18 lines
354 B
Nix
18 lines
354 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./hardware-configuration.nix
|
||
|
../../base.nix
|
||
|
../../users/root.nix
|
||
|
../../roles/tailscale.nix
|
||
|
../../roles/caddy.nix
|
||
|
../../roles/vscode-remote.nix
|
||
|
../../roles/syncthing.nix
|
||
|
];
|
||
|
|
||
|
boot.tmp.cleanOnBoot = true;
|
||
|
zramSwap.enable = true;
|
||
|
networking.hostName = "GARDEN";
|
||
|
system.stateVersion = "23.11";
|
||
|
}
|