From 402e7d38b9350cc646f32dc02b00c0f31398de23 Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sat, 14 Dec 2024 07:20:42 +0300 Subject: [PATCH] Max: Move home to sep drive. --- host/x86_64-linux/max/Filesystem.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 host/x86_64-linux/max/Filesystem.nix diff --git a/host/x86_64-linux/max/Filesystem.nix b/host/x86_64-linux/max/Filesystem.nix new file mode 100644 index 00000000..cecf8b87 --- /dev/null +++ b/host/x86_64-linux/max/Filesystem.nix @@ -0,0 +1,11 @@ +{ ... }: { + fileSystems = { + "/home" = { + device = "/dev/storage/home"; + fsType = "ext4"; + options = [ + "noatime" + ]; + }; + }; +}