From 720125778585721ba2fab75ee532e4ccbc52593a Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Wed, 25 Dec 2024 06:50:24 +0300 Subject: [PATCH] Max: Disable all storage temporarily. --- host/x86_64-linux/home/Filesystem.nix | 1 + host/x86_64-linux/max/Filesystem.nix | 15 --------------- 2 files changed, 1 insertion(+), 15 deletions(-) diff --git a/host/x86_64-linux/home/Filesystem.nix b/host/x86_64-linux/home/Filesystem.nix index d516ae35..cdce05d9 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 950b0bcf..52c14b8c 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" ]; - } - ]; }