aboutsummaryrefslogtreecommitdiff
path: root/hosts/herra/file-system.nix
blob: 42976ff0d509c9daf867eb539c539e9996f35e02 (plain)
1
2
3
4
5
6
{...}: {
  fileSystems."/nix" = {
    options = [ "compress=zstd:3" "noatime" ];
    neededForBoot = true;
  };
}