From 23bcb97b111ba924ef3d7873f124fd4284fdcb2f Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Fri, 15 Nov 2024 05:05:40 +0300 Subject: [PATCH] Laptop: Remove storage. --- host/x86_64-linux/laptop/Filesystem.nix | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 host/x86_64-linux/laptop/Filesystem.nix diff --git a/host/x86_64-linux/laptop/Filesystem.nix b/host/x86_64-linux/laptop/Filesystem.nix deleted file mode 100644 index 9916d88..0000000 --- a/host/x86_64-linux/laptop/Filesystem.nix +++ /dev/null @@ -1,10 +0,0 @@ -{ ... }: { - fileSystems."/storage/hot" = { - device = "/dev/storage/hot"; - fsType = "ext4"; - options = [ - "noatime" - "nofail" - ]; - }; -}