Use btrfs for filesystems

This commit is contained in:
thiloho
2023-07-13 08:13:03 +00:00
parent 3f23457a9b
commit 444741d758
2 changed files with 23 additions and 6 deletions

View File

@@ -18,6 +18,12 @@
isNormalUser = true;
extraGroups = [ "wheel" "networkmanager" "docker" ];
};
fileSystems = {
"/".options = [ "compress=zstd" ];
"/home".options = [ "compress=zstd" ];
"/nix".options = [ "compress=zstd" "noatime" ];
};
}