infrastructure/hosts/hydrogen/system/nix/default.nix

24 lines
603 B
Nix
Raw Normal View History

{ lib, pkgs, nixpkgs, ... }: {
2023-06-19 19:09:13 +00:00
# optimizations
nix.settings.auto-optimise-store = true;
# garbage collection
nix.gc = {
automatic = true;
dates = "weekly";
options = "--delete-older-than 30d";
};
# experimental features
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# pin nixpkgs registry
nix.registry.nixpkgs.flake = nixpkgs;
# print diff between two generations
system.activationScripts.nvd-report-changes = ''
PATH=$PATH:${lib.makeBinPath [ pkgs.nvd pkgs.nix ]}
nvd diff $(ls -dv /nix/var/nix/profiles/system-*-link | tail -2)
'';
2023-06-19 19:09:13 +00:00
}