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" + ]; + }; + }; +}