Enable flakes on garden.

This commit is contained in:
Nolan Darilek 2024-12-23 11:39:35 -06:00
parent 857e7b6a07
commit d9f7ff97fc

View File

@ -10,8 +10,17 @@
../../roles/syncthing.nix
];
services.openssh.openFirewall = false;
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "GARDEN";
# Enable the Flakes feature and the accompanying new nix command-line tool
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
system.stateVersion = "23.11";
}