Files
nixos/modules-darwin/default.nix
T

12 lines
165 B
Nix
Raw Normal View History

2022-09-07 20:01:51 -05:00
{ ... }:
{
system.stateVersion = 4;
programs = {
zsh.enable = true;
bash.enable = true;
};
services.nix-daemon.enable = true;
2023-08-23 15:02:12 -05:00
nix.gc.interval.Hour = 24;
2022-09-07 20:01:51 -05:00
}