This commit is contained in:
2026-02-06 18:30:57 -07:00
commit 8fa4b314b0
10 changed files with 488 additions and 0 deletions

16
modules/networking.nix Normal file
View File

@@ -0,0 +1,16 @@
{ config, pkgs, ... }:
let
settings = import ../settings.nix;
in
{
networking.hostName = settings.hostname;
networking.networkmanager.enable = true;
networking.firewall = {
enable = true;
allowedTCPPorts = [ 22 80 443 ];
allowedUDPPorts = [ ];
};
}