nixos/hosts/garden/default.nix

27 lines
552 B
Nix
Raw Normal View History

2024-12-23 11:20:27 -06:00
{ ... }:
{
imports = [
./hardware-configuration.nix
../../base.nix
../../users/root.nix
../../roles/tailscale.nix
../../roles/caddy.nix
../../roles/vscode-remote.nix
../../roles/syncthing.nix
];
2024-12-23 11:39:35 -06:00
services.openssh.openFirewall = false;
2024-12-23 11:20:27 -06:00
boot.tmp.cleanOnBoot = true;
zramSwap.enable = true;
networking.hostName = "GARDEN";
2024-12-23 11:39:35 -06:00
# Enable the Flakes feature and the accompanying new nix command-line tool
nix.settings.experimental-features = [
"nix-command"
"flakes"
];
2024-12-23 11:20:27 -06:00
system.stateVersion = "23.11";
}