12 lines
165 B
Nix
12 lines
165 B
Nix
{ ... }:
|
|
|
|
{
|
|
system.stateVersion = 4;
|
|
programs = {
|
|
zsh.enable = true;
|
|
bash.enable = true;
|
|
};
|
|
services.nix-daemon.enable = true;
|
|
nix.gc.interval.Hour = 24;
|
|
}
|