mirror of
https://github.com/tuxdotrs/nix-config.git
synced 2026-05-07 02:16:33 +05:30
21 lines
316 B
Nix
21 lines
316 B
Nix
{
|
|
flake.modules.nixos.core =
|
|
{
|
|
config,
|
|
userName,
|
|
...
|
|
}:
|
|
{
|
|
programs.nh = {
|
|
enable = true;
|
|
|
|
clean = {
|
|
enable = !config.nix.gc.automatic;
|
|
dates = "weekly";
|
|
};
|
|
|
|
flake = "/home/${userName}/Projects/nixos-config";
|
|
};
|
|
};
|
|
}
|