diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-03-31 21:29:27 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-03-31 21:29:27 +0300 |
commit | 9a5427e3a0c0ccf2a82dc503149a26b23fbd6004 (patch) | |
tree | f28beec29deeea36038615a8fb98a810891940b5 /nixosConfigurations/yavanna/default.nix | |
parent | 2024-03-19 (diff) |
2024-03-31
Diffstat (limited to '')
-rw-r--r-- | nixosConfigurations/yavanna/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixosConfigurations/yavanna/default.nix b/nixosConfigurations/yavanna/default.nix index 4f0d43c..2d52f53 100644 --- a/nixosConfigurations/yavanna/default.nix +++ b/nixosConfigurations/yavanna/default.nix @@ -20,10 +20,10 @@ _: { fileSystems."/" = { device = "/dev/sda2"; fsType = "ext4"; - options = ["noatime"]; + options = [ "noatime" ]; }; - swapDevices = [{device = "/dev/sda3";}]; + swapDevices = [ { device = "/dev/sda3"; } ]; zramSwap = { enable = true; |