20 lines
438 B
Nix
20 lines
438 B
Nix
|
{pkgs, ...}: {
|
||
|
environment.systemPackages = with pkgs; [
|
||
|
git
|
||
|
nix-output-monitor
|
||
|
];
|
||
|
nix = {
|
||
|
settings.experimental-features = [ "nix-command" "flakes" ];
|
||
|
gc = {
|
||
|
automatic = true;
|
||
|
options = "--delete-older-than 30d";
|
||
|
dates = "weekly";
|
||
|
};
|
||
|
optimise.automatic = true;
|
||
|
};
|
||
|
system.autoUpgrade = {
|
||
|
enable = true;
|
||
|
flake = "git+https://git.icanttype.org/cdombroski/nix-configs.git";
|
||
|
};
|
||
|
}
|