Remove drive mounting until I figure out why that failed

This commit is contained in:
Chris Thompson 2024-11-11 02:12:32 -05:00
parent a590240328
commit 2d55c4ed8c

View file

@ -12,17 +12,17 @@
./main-user.nix ./main-user.nix
]; ];
fileSystems."/mnt" = #fileSystems."/mnt" =
{ device = "/dev/mapper/volgrp-root"; # { device = "/dev/disk/by-uuid/72db20ba-4dbd-4fb7-891c-b457e2cf9648";
fsType = "btrfs"; # fsType = "btrfs";
options = [ "subvol=5" ]; # options = [ "subvol=5" ];
}; # };
fileSystems."/mnt/home" = #fileSystems."/mnt/home" =
{ device = "/dev/mapper/volgrp-home"; # { device = "/dev/disk/by-uuid/4eda05c2-d434-495d-97a0-8a81e8a533ec";
fsType = "btrfs"; # fsType = "btrfs";
options = [ "subvol=5" ]; # options = [ "subvol=5" ];
}; # };
boot.initrd.luks.devices."nvme0n1p2_crypt".device = "/dev/disk/by-uuid/93922f23-d0ba-4405-adbb-9789d37e5985"; boot.initrd.luks.devices."nvme0n1p2_crypt".device = "/dev/disk/by-uuid/93922f23-d0ba-4405-adbb-9789d37e5985";
boot.initrd.luks.devices."nvme2n1p2_oldcrypt".device = "/dev/disk/by-uuid/44235dca-99e8-4ea8-9516-97d9f5a2d702"; boot.initrd.luks.devices."nvme2n1p2_oldcrypt".device = "/dev/disk/by-uuid/44235dca-99e8-4ea8-9516-97d9f5a2d702";