moved networking into module

This commit is contained in:
2025-11-20 16:33:42 +01:00
parent 257248db82
commit 230ba1f30c
2 changed files with 16 additions and 10 deletions

View File

@@ -0,0 +1,15 @@
{
config,
...
}: {
networking = {
hostName = "nixOS";
networkmanager.enable = true;
firewall = {
enable = true;
# allowedTCPPorts = [ 80 443];
# allowedUDPPorts = [];
};
};
}