diff --git a/host/x86_64-linux/home/Filesystem.nix b/host/x86_64-linux/home/Filesystem.nix index d516ae3..cdce05d 100644 --- a/host/x86_64-linux/home/Filesystem.nix +++ b/host/x86_64-linux/home/Filesystem.nix @@ -31,6 +31,7 @@ # swapDevices = [{ # device = "/storage/hot/.swapfile"; + # randomEncryption.enable = true; # size = 128 * 1024; # options = [ "nofail" ]; # }]; diff --git a/host/x86_64-linux/max/Filesystem.nix b/host/x86_64-linux/max/Filesystem.nix index 950b0bc..52c14b8 100644 --- a/host/x86_64-linux/max/Filesystem.nix +++ b/host/x86_64-linux/max/Filesystem.nix @@ -1,18 +1,3 @@ { ... }: { - fileSystems = { - "/home" = { - device = "/dev/storage/home"; - fsType = "ext4"; - options = [ "noatime" ]; - }; - }; - - swapDevices = [ - { - device = "/dev/storage/swap"; - randomEncryption.enable = true; - options = [ "nofail" ]; - } - ]; }