mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
18 lines
308 B
Nix
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"
|
|
];
|
|
};
|
|
};
|
|
}
|