diff options
author | Alan Pearce | 2017-09-09 16:35:14 +0200 |
---|---|---|
committer | Alan Pearce | 2017-09-09 16:49:30 +0200 |
commit | 5a4ead8db870f7c9950d092d5dd3ec1c570024f2 (patch) | |
tree | 721bd1520bea14f1d931ae975aa5b4d048660a2f /modules | |
parent | 0cef6aa80ff7d52afe80b7086cc3452bf020722a (diff) | |
download | nixfiles-5a4ead8db870f7c9950d092d5dd3ec1c570024f2.tar.lz nixfiles-5a4ead8db870f7c9950d092d5dd3ec1c570024f2.tar.zst nixfiles-5a4ead8db870f7c9950d092d5dd3ec1c570024f2.zip |
Add disk configuration
Diffstat (limited to 'modules')
-rw-r--r-- | modules/bare-metal.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/modules/bare-metal.nix b/modules/bare-metal.nix index 04046b1b..969848bb 100644 --- a/modules/bare-metal.nix +++ b/modules/bare-metal.nix @@ -10,4 +10,7 @@ ]; boot.kernelPackages = pkgs.linuxPackages_4_12; + + fileSystems."/".options = [ "noatime" "nodiratime" ]; + fileSystems."/home".options = [ "noatime" "nodiratime" ]; } |