diff options
| author | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-08-29 20:54:34 -0700 |
| commit | 6ddc25d4e189c30431703f602653b8bae861e4af (patch) | |
| tree | 979cc4d790c3ce8895471d008d61c3e9645acec4 /modules/networking | |
| parent | firewall (diff) | |
| download | nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.tar.xz nixos-config-6ddc25d4e189c30431703f602653b8bae861e4af.zip | |
some stuff
Diffstat (limited to 'modules/networking')
| -rw-r--r-- | modules/networking/default.nix | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/networking/default.nix b/modules/networking/default.nix deleted file mode 100644 index 30052f2..0000000 --- a/modules/networking/default.nix +++ /dev/null @@ -1,22 +0,0 @@ -{ - networking = { - hostName = "kansai"; - networkmanager.enable = false; - - firewall = { - enable = true; - allowedUDPPorts = [ 53 ]; - - allowedTCPPorts = [ - 2222 - 80 - 443 - ]; - }; - - dhcpcd = { - wait = "background"; - extraConfig = "noarp"; - }; - }; -} |