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