diff options
author | Silas Schöffel <sils@sils.li> | 2024-04-08 15:47:31 +0200 |
---|---|---|
committer | Silas Schöffel <sils@sils.li> | 2024-04-08 15:47:31 +0200 |
commit | ff2f7ef61cfe0a2d1919a002bd1285c2874b37f5 (patch) | |
tree | c0dc9c38197333ec9c79ef6766692f408a695681 /sys | |
parent | firefox: refactor in separate dir (diff) | |
download | nix-config-ff2f7ef61cfe0a2d1919a002bd1285c2874b37f5.tar.gz nix-config-ff2f7ef61cfe0a2d1919a002bd1285c2874b37f5.zip |
refactor: move networking to modules
Diffstat (limited to 'sys')
-rw-r--r-- | sys/default.nix | 1 | ||||
-rw-r--r-- | sys/networking/default.nix | 38 |
2 files changed, 0 insertions, 39 deletions
diff --git a/sys/default.nix b/sys/default.nix index 155bf1e..82d323a 100644 --- a/sys/default.nix +++ b/sys/default.nix @@ -7,7 +7,6 @@ ./font ./impermanence ./keyboard - ./networking ./opengl ./packages ./services diff --git a/sys/networking/default.nix b/sys/networking/default.nix deleted file mode 100644 index efbbbf8..0000000 --- a/sys/networking/default.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ - config, - self, - ... -}: { - networking = { - useDHCP = true; - #nameservers = ["2620:fe::fe" "2620:fe::9" "9.9.9.9" "149.112.112.112"]; - wireless = { - enable = true; - environmentFile = config.age.secrets.wireless.path; - networks = { - # Important: Never forget the second '@'! - "@SSID_N0@".psk = "@PSK_N0@"; - "@SSID_N1@".psk = "@PSK_N1@"; - "@SSID_N2@".psk = "@PSK_N2@"; - "@SSID_N3@".psk = "@PSK_N3@"; - "@SSID_N4@" = { - auth = '' - proto=RSN - key_mgmt=WPA-EAP - pairwise=CCMP - auth_alg=OPEN - eap=PEAP - identity="@IDENTITY_N4@" - password="@PSK_N4@" - ca_cert="${self}/files/DNSX-CA.pem" - ''; - }; - "@SSID_N5@".psk = "@PSK_N5@"; - }; - userControlled = { - enable = true; - group = "wheel"; # TODO: Change this? - }; - }; - }; -} |