Don't automatically run gc or optimise the Nix

...store
This commit is contained in:
Oliver Davies 2025-03-10 20:44:27 +00:00
parent 6297a32ecd
commit e610e30658
4 changed files with 13 additions and 61 deletions

View file

@ -27,25 +27,4 @@
services.syncthing.enable = true;
nix.nixPath = [ "nixpkgs=${inputs.nixpkgs}" ];
nix = {
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
optimise.automatic = true;
settings = {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
};
}

View file

@ -20,6 +20,19 @@
./programs.nix
];
nix = {
settings = {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
};
users.defaultUserShell = pkgs.zsh;
environment.systemPackages =

View file

@ -48,23 +48,4 @@
};
zramSwap.enable = true;
nix = {
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
optimise.automatic = true;
settings = {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
};
}

View file

@ -64,27 +64,6 @@
zramSwap.enable = true;
nix = {
gc = {
automatic = true;
dates = "daily";
options = "--delete-older-than 7d";
};
optimise.automatic = true;
settings = {
auto-optimise-store = true;
experimental-features = [
"nix-command"
"flakes"
];
warn-dirty = false;
};
};
networking.hosts = {
"192.168.1.116" = [ "nixedo" ];
};