Files
haschel/modules/networking.nix
Atridad Lahiji 3195fb0968
All checks were successful
Deploy NixOS / deploy (push) Successful in 30s
Updated pods port
2026-02-22 15:08:41 -07:00

21 lines
282 B
Nix

{ ... }:
let
settings = import ../settings.nix;
in
{
networking.hostName = settings.hostname;
networking.networkmanager.enable = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [
22
80
443
];
allowedUDPPorts = [ ];
};
}