aboutsummaryrefslogtreecommitdiff
path: root/hosts/c-pc/network.nix
diff options
context:
space:
mode:
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";
- };
-}