diff options
Diffstat (limited to 'hosts/saarni')
| -rw-r--r-- | hosts/saarni/hardware-configuration.nix | 33 |
1 files changed, 21 insertions, 12 deletions
diff --git a/hosts/saarni/hardware-configuration.nix b/hosts/saarni/hardware-configuration.nix index 27dd94a..8381267 100644 --- a/hosts/saarni/hardware-configuration.nix +++ b/hosts/saarni/hardware-configuration.nix @@ -46,18 +46,27 @@ ''; }; - fileSystems."/" = { - device = "/dev/disk/by-uuid/3968a07a-5e37-4bdb-9e3a-6c74950fd03d"; - fsType = "ext4"; - }; - - fileSystems."/boot" = { - device = "/dev/disk/by-uuid/9B7E-3D1B"; - fsType = "vfat"; - options = [ - "fmask=0022" - "dmask=0022" - ]; + fileSystems = { + "/boot" = { + device = "/dev/disk/by-uuid/9B7E-3D1B"; + fsType = "vfat"; + options = [ + "fmask=0022" + "dmask=0022" + ]; + }; + "/" = { + device = "/dev/disk/by-uuid/3968a07a-5e37-4bdb-9e3a-6c74950fd03d"; + fsType = "ext4"; + options = [ + "defaults" + "lazytime" + "nodiratime" + "barrier=1" + "errors=remount-ro" + "commit=30" + ]; + }; }; hardware.firmware = [ pkgs.sof-firmware ]; |
