frues-clan/modules/base.nix
Pedro Rey Anca 6f775f9bce
Some checks failed
Flake check / check (push) Has been cancelled
Update `flake.lock` / update_lockfile (push) Has been cancelled
base: Automatic Nix GC
2025-11-19 22:53:32 +01:00

14 lines
213 B
Nix

{ pkgs, ... }:
{
# Must-have packages
environment.systemPackages = with pkgs; [
vim
rsync
];
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
}