2023-07-12 13:52:15 +02:00
|
|
|
{pkgs, config, hostname, ...}: {
|
|
|
|
# Enable networking
|
|
|
|
# Imports for host-specific configs:
|
|
|
|
imports = [
|
|
|
|
../hosts/${hostname}/networking.nix
|
2023-07-12 16:43:21 +02:00
|
|
|
];
|
|
|
|
|
2023-07-12 13:52:15 +02:00
|
|
|
networking = {
|
|
|
|
networkmanager = {
|
|
|
|
enable = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
enableIPv6 = false;
|
|
|
|
firewall = {
|
|
|
|
enable = true;
|
|
|
|
allowedTCPPorts = [ ];
|
|
|
|
allowedUDPPorts = [ ];
|
|
|
|
interfaces.tailscale0.allowedTCPPorts = [ 22 ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|