1
0
Fork 0

Compare commits

..

2 commits

3 changed files with 54 additions and 36 deletions

View file

@ -7,7 +7,8 @@
}: }:
let let
luksUUID = "9fdc521b-a037-4070-af47-f54da03675e4"; luksUUID = "9fdc521b-a037-4070-af47-f54da03675e4"; # The UUID of the locked LUKS partition.
rootUUID = "dfb4fc8f-e82b-43a1-91c1-a77acb6337cb"; # The UUID of the unlocked filesystem partition.
in in
{ {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
@ -35,7 +36,7 @@ in
enable = true; enable = true;
devices = { devices = {
boot = "/dev/disk/by-uuid/FC20-D155"; boot = "/dev/disk/by-uuid/FC20-D155";
btrfs = "/dev/disk/by-uuid/${luksUUID}"; btrfs = "/dev/disk/by-uuid/${rootUUID}";
}; };
swapFile = { swapFile = {
enable = true; enable = true;

View file

@ -6,6 +6,10 @@
modulesPath, modulesPath,
... ...
}: }:
let
luksUUID = "bcf67e34-339e-40b9-8ffd-bec8f7f55248"; # The UUID of the locked LUKS partition.
rootUUID = "b801fbea-4cb5-4255-bea9-a2ce77d1a1b7"; # The UUID of the unlocked filesystem partition.
in
{ {
imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; imports = [ (modulesPath + "/installer/scan/not-detected.nix") ];
@ -24,8 +28,8 @@
"sd_mod" "sd_mod"
"rtsx_pci_sdmmc" "rtsx_pci_sdmmc"
]; ];
luks.devices."luks-bcf67e34-339e-40b9-8ffd-bec8f7f55248" = { luks.devices."luks-${luksUUID}" = {
device = "/dev/disk/by-uuid/bcf67e34-339e-40b9-8ffd-bec8f7f55248"; device = "/dev/disk/by-uuid/${luksUUID}";
crypttabExtraOpts = [ "tpm2-device=auto" ]; # Enable TPM auto-unlocking crypttabExtraOpts = [ "tpm2-device=auto" ]; # Enable TPM auto-unlocking
}; };
}; };
@ -33,25 +37,16 @@
kernelModules = [ "kvm-amd" ]; kernelModules = [ "kvm-amd" ];
}; };
fileSystems = { # Configure the main filesystem.
"/" = { aux.system.filesystem.btrfs = {
device = "/dev/disk/by-uuid/b801fbea-4cb5-4255-bea9-a2ce77d1a1b7"; enable = true;
fsType = "btrfs"; devices = {
options = [ "subvol=@,compress=zstd,discard" ]; boot = "/dev/disk/by-uuid/FC20-D155";
btrfs = "/dev/disk/by-uuid/${rootUUID}";
}; };
"/home" = { swapFile = {
device = "/dev/disk/by-uuid/b801fbea-4cb5-4255-bea9-a2ce77d1a1b7"; enable = true;
fsType = "btrfs"; size = 16384;
options = [ "subvol=@home,compress=zstd,discard" ];
};
"/swap" = {
device = "/dev/disk/by-uuid/b801fbea-4cb5-4255-bea9-a2ce77d1a1b7";
fsType = "btrfs";
options = [ "subvol=@swap" ];
};
"/boot" = {
device = "/dev/disk/by-uuid/AFCB-D880";
fsType = "vfat";
}; };
}; };

View file

@ -2,11 +2,7 @@
let let
cfg = config.aux.system.filesystem.btrfs; cfg = config.aux.system.filesystem.btrfs;
standardMountOpts = [ standardMountOpts = [ "compress=zstd" ];
"compress=zstd"
"discard=async"
"noatime"
];
in in
{ {
options = { options = {
@ -24,6 +20,16 @@ in
default = ""; default = "";
}; };
}; };
subvolumes = lib.mkOption {
type = lib.types.listOf lib.types.str;
description = "Which subvolumes to mount. Leave as the default to create all standard subvolumes.";
default = [
"/"
"/home"
"/nix"
"/var/log"
];
};
swapFile = { swapFile = {
enable = lib.mkEnableOption (lib.mdDoc "Enables the creation of a swap file."); enable = lib.mkEnableOption (lib.mdDoc "Enables the creation of a swap file.");
size = lib.mkOption { size = lib.mkOption {
@ -50,36 +56,52 @@ in
]; ];
fileSystems = fileSystems =
{ {
"/" = { "/" = lib.mkIf (builtins.elem "/" cfg.subvolumes) {
device = cfg.devices.btrfs; device = cfg.devices.btrfs;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@" ] ++ standardMountOpts; options = [
"subvol=@"
"compress=zstd"
];
}; };
"/boot" = { "/boot" = {
device = cfg.devices.boot; device = cfg.devices.boot;
fsType = "vfat"; fsType = "vfat";
}; };
"/home" = { "/home" = lib.mkIf (builtins.elem "/home" cfg.subvolumes) {
device = cfg.devices.btrfs; device = cfg.devices.btrfs;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@home" ] ++ standardMountOpts; options = [
"subvol=@home"
"compress=zstd"
];
}; };
"/var/log" = { "/var/log" = lib.mkIf (builtins.elem "/var/log" cfg.subvolumes) {
device = cfg.devices.btrfs; device = cfg.devices.btrfs;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@log" ] ++ standardMountOpts; options = [
"subvol=@log"
"compress=zstd"
];
}; };
"/nix" = { "/nix" = lib.mkIf (builtins.elem "/nix" cfg.subvolumes) {
device = cfg.devices.btrfs; device = cfg.devices.btrfs;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@nix" ] ++ standardMountOpts; options = [
"subvol=@nix"
"compress=zstd"
"noatime"
];
}; };
} }
// lib.optionalAttrs cfg.swapFile.enable { // lib.optionalAttrs cfg.swapFile.enable {
"/swap" = { "/swap" = {
device = cfg.devices.btrfs; device = cfg.devices.btrfs;
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=@swap" ]; options = [
"subvol=@swap"
"noatime"
];
}; };
}; };