91 lines
2 KiB
Nix
91 lines
2 KiB
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
modulesPath,
|
|
...
|
|
}:
|
|
let
|
|
bootUUID = "4402ec25-129b-43f5-a043-185e99078f73";
|
|
efiUUID = "268B-0081";
|
|
luuksUUID = "fbd9a17b-42aa-4f41-aaf9-eaf9fc62340b";
|
|
cryptrootUUID = "74224da5-7f95-48a7-9897-8ce6c2e1414d";
|
|
in
|
|
{
|
|
imports = [
|
|
(modulesPath + "/installer/scan/not-detected.nix")
|
|
];
|
|
|
|
|
|
fileSystems."/boot" = {
|
|
device = "/dev/disk/by-uuid/${bootUUID}";
|
|
fsType = "ext4";
|
|
};
|
|
|
|
fileSystems."/efi" = {
|
|
device = "/dev/disk/by-uuid/${efiUUID}";
|
|
fsType = "vfat";
|
|
options = [
|
|
"fmask=0137"
|
|
"dmask=0027"
|
|
];
|
|
};
|
|
|
|
boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/${luuksUUID}";
|
|
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@root" ];
|
|
};
|
|
|
|
fileSystems."/home" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@home" ];
|
|
};
|
|
|
|
fileSystems."/nix" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@nix" ];
|
|
};
|
|
|
|
fileSystems."/var/cache" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_cache" ];
|
|
};
|
|
|
|
fileSystems."/var/log" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_log" ];
|
|
};
|
|
|
|
fileSystems."/var/spool" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_spool" ];
|
|
};
|
|
|
|
fileSystems."/var/tmp" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_tmp" ];
|
|
};
|
|
|
|
fileSystems."/var/lib/machines" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_lib_machines" ];
|
|
};
|
|
|
|
fileSystems."/var/lib/portables" = {
|
|
device = "/dev/disk/by-uuid/${cryptrootUUID}";
|
|
fsType = "btrfs";
|
|
options = [ "subvol=@var_lib_portables" ];
|
|
};
|
|
|
|
swapDevices = [ ];
|
|
}
|