Files
haschel/modules/networking.nix
Atridad Lahiji 08b69bb46a
Some checks failed
Deploy NixOS / deploy (push) Failing after 18s
Cleanup now that I finally got the LSP working... so many warnings.
2026-02-17 15:19:03 -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 = [ ];
};
}