mirror of
https://github.com/kmein/niveum
synced 2026-03-16 10:11:08 +01:00
feat(networkd): add kleiter
This commit is contained in:
@@ -8,6 +8,7 @@ in {
|
||||
./bash.nix
|
||||
./bluetooth.nix
|
||||
./ccc.nix
|
||||
./kleiter.nix
|
||||
./chromium.nix
|
||||
./cloud.nix
|
||||
./compton.nix
|
||||
@@ -258,7 +259,6 @@ in {
|
||||
"GoOnline".psk = "airbnbguest";
|
||||
"security-by-obscurity".psk = "44629828256481964386";
|
||||
"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