11 lines
247 B
Nix
11 lines
247 B
Nix
{ config, ... }:
|
|
|
|
{
|
|
networking = {
|
|
domain = config.constants.domain;
|
|
firewall.trustedInterfaces = [ config.services.tailscale.interfaceName ];
|
|
hostId = "3ddd2ad2";
|
|
nftables.enable = true;
|
|
};
|
|
services.openssh.enable = true;
|
|
}
|