mirror of
https://github.com/kmein/niveum
synced 2026-03-18 02:51:08 +01:00
feat(networkd): add kleiter
This commit is contained in:
@@ -8,6 +8,7 @@ in {
|
|||||||
./bash.nix
|
./bash.nix
|
||||||
./bluetooth.nix
|
./bluetooth.nix
|
||||||
./ccc.nix
|
./ccc.nix
|
||||||
|
./kleiter.nix
|
||||||
./chromium.nix
|
./chromium.nix
|
||||||
./cloud.nix
|
./cloud.nix
|
||||||
./compton.nix
|
./compton.nix
|
||||||
@@ -258,7 +259,6 @@ in {
|
|||||||
"GoOnline".psk = "airbnbguest";
|
"GoOnline".psk = "airbnbguest";
|
||||||
"security-by-obscurity".psk = "44629828256481964386";
|
"security-by-obscurity".psk = "44629828256481964386";
|
||||||
"Mayflower".psk = "Fr31EsLan";
|
"Mayflower".psk = "Fr31EsLan";
|
||||||
"Kleiter Gast".psk = "Kleiter-Gast";
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
13
configs/kleiter.nix
Normal file
13
configs/kleiter.nix
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
{ ... }:
|
||||||
|
let ssid = "Kleiter Gast";
|
||||||
|
in {
|
||||||
|
networking.wireless.networks.${ssid}.psk = "Kleiter-Gast";
|
||||||
|
|
||||||
|
# fix dns
|
||||||
|
systemd.network.networks.kleiter = {
|
||||||
|
dns = [ "8.8.8.8" "8.8.4.4" ];
|
||||||
|
networkConfig.DHCP = "yes";
|
||||||
|
matchConfig.Name = "wlp3s0";
|
||||||
|
matchConfig.SSID = ssid;
|
||||||
|
};
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user