nixfiles/nixos/common/nix.nix
2025-07-05 15:45:49 -07:00

18 lines
308 B
Nix

{inputs, pkgs, ...}: {
programs.nh = {
enable = true;
package = inputs.nh.packages.${pkgs.system}.nh;
};
nix = {
gc = {
automatic = true;
dates = "weekly";
};
settings = {
auto-optimise-store = true;
trusted-users = [
"deploy"
];
};
};
}