12 lines
283 B
Nix
12 lines
283 B
Nix
{config, ...}: {
|
|
networking = {
|
|
firewall.trustedInterfaces = [config.services.tailscale.interfaceName];
|
|
hostId = "74247225";
|
|
networkmanager = {
|
|
enable = true;
|
|
wifi.backend = "iwd";
|
|
};
|
|
nftables.enable = true;
|
|
};
|
|
services.openssh.enable = true;
|
|
}
|