14 lines
278 B
Nix
14 lines
278 B
Nix
{ hostname, timezone, ... }: {
|
|
system.stateVersion = "24.11";
|
|
imports = [
|
|
./misc/utilities.nix
|
|
./misc/nix-conf.nix
|
|
];
|
|
|
|
networking.hostName = "${hostname}";
|
|
time.timeZone = timezone;
|
|
services = {
|
|
openssh.enable = true;
|
|
tailscale.enable = true;
|
|
};
|
|
}
|