config/systems/desktop/nix.nix
2024-09-29 16:42:01 +01:00

16 lines
274 B
Nix

{ pkgs, ... }:
{
nix = {
package = pkgs.nixVersions.stable;
settings = {
experimental-features = [ "nix-command" "flakes" ];
auto-optimise-store = true;
};
gc = {
automatic = true;
options = "--delete-older-than 7d";
};
};
}