handle all disks

This commit is contained in:
Christoph Cullmann 2023-07-28 20:14:41 +02:00
parent 364fc1be2b
commit ff9fbfbba7
2 changed files with 77 additions and 0 deletions

View file

@ -24,10 +24,21 @@
fsType = "vfat";
};
# system
boot.initrd.luks.devices."crypt-system".device = "/dev/disk/by-uuid/2dc54953-958b-4c5a-8454-21c0b1d16222";
boot.initrd.luks.devices."crypt-system".allowDiscards = true;
boot.initrd.luks.devices."crypt-system".bypassWorkqueues = true;
# projects
boot.initrd.luks.devices."crypt-projects".device = "/dev/disk/by-id/nvme-Samsung_SSD_980_PRO_2TB_S69ENF0R846614L";
boot.initrd.luks.devices."crypt-projects".allowDiscards = true;
boot.initrd.luks.devices."crypt-projects".bypassWorkqueues = true;
# vms
boot.initrd.luks.devices."crypt-vms".device = "/dev/disk/by-id/nvme-CT2000P5PSSD8_213330E4ED05";
boot.initrd.luks.devices."crypt-vms".allowDiscards = true;
boot.initrd.luks.devices."crypt-vms".bypassWorkqueues = true;
fileSystems."/nix" =
{ device = "/dev/mapper/crypt-system";
fsType = "btrfs";
@ -58,6 +69,18 @@
options = [ "bind" ];
};
fileSystems."/home/cullmann/projects" =
{ device = "/dev/mapper/crypt-projects";
fsType = "btrfs";
options = [ "noatime" ];
};
fileSystems."/home/cullmann/vms" =
{ device = "/dev/mapper/crypt-vms";
fsType = "btrfs";
options = [ "noatime" ];
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";