aboutsummaryrefslogtreecommitdiff
path: root/hosts/c-pc/network.nix
diff options
context:
space:
mode:
authorCaroline Larimore <caroline@larimo.re>2025-02-03 19:30:44 -0800
committerCaroline Larimore <caroline@larimo.re>2025-04-14 18:58:17 -0700
commit5a0a36726756bc2a88770f8fd65418b6d3ce007b (patch)
treec6eac6d1e52f6171d5dcb6b06b706329e3239618 /hosts/c-pc/network.nix
parentffc499cddd42ff4bea818718ae0b2f12d0e5dfbb (diff)
migration: barebones c-pc config
Diffstat (limited to 'hosts/c-pc/network.nix')
-rw-r--r--hosts/c-pc/network.nix28
1 files changed, 0 insertions, 28 deletions
diff --git a/hosts/c-pc/network.nix b/hosts/c-pc/network.nix
deleted file mode 100644
index 969b49f..0000000
--- a/hosts/c-pc/network.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ ... }:
-
-{
- networking = {
- hostName = "c-pc";
- hostId = "23ce94ff";
-
- useDHCP = true;
-
- wireless = {
- enable = true;
-
- # Import /etc/wpa_supplicant.conf networks
- allowAuxiliaryImperativeNetworks = true;
- };
-
- firewall = {
- enable = false;
-
- allowedTCPPorts = [ 8096 50000 ];
- allowedUDPPorts = [ ];
- };
- };
-
- environment.etc."wpa_supplicant.conf" = {
- source = "/secrets/wireless.conf";
- };
-}