aboutsummaryrefslogtreecommitdiff
path: root/system/networking.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2024-07-18 23:39:42 -0700
committerCaroline Larimore <caroline@larimo.re>2024-07-18 23:39:42 -0700
commit65174b4b5c05bb143e6681a4cbcd0a95f04987e2 (patch)
tree35383af43f2aa972b316dd12e1d5d1bd5df84086 /system/networking.nix
parent15c5050590415fd64e984e994ec77186918cf7b7 (diff)
Begin modularization!
Diffstat (limited to 'system/networking.nix')
-rw-r--r--system/networking.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/system/networking.nix b/system/networking.nix
deleted file mode 100644
index 31632c1..0000000
--- a/system/networking.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ ... }:
-
-{
- networking = {
- hostName = "c-pc";
- hostId = "23ce94ff";
-
- useDHCP = true;
-
- wireless = {
- enable = true;
-
- environmentFile = "/persist/secrets/wireless.env";
- networks = {
- "The Dwyers".psk = "@PSK@";
- };
- };
-
- firewall = {
- enable = false;
-
- allowedTCPPorts = [ 8096 50000 ];
- allowedUDPPorts = [ ];
- };
- };
-}
-