15 lines
226 B
Nix
15 lines
226 B
Nix
|
{ username, ... }:
|
||
|
|
||
|
{
|
||
|
programs.nh = {
|
||
|
enable = true;
|
||
|
clean.enable = true;
|
||
|
clean.extraArgs = "--keep-since 4d --keep 3";
|
||
|
};
|
||
|
|
||
|
environment.sessionVariables = {
|
||
|
FLAKE = "/home/${username}/.dotfiles";
|
||
|
};
|
||
|
|
||
|
}
|