mirror of
https://github.com/Stunkymonkey/nixos.git
synced 2025-05-24 09:54:40 +02:00
12 lines
225 B
Nix
12 lines
225 B
Nix
![]() |
{ config, ... }:
|
||
|
{
|
||
|
sops.secrets."wifi/bismarck" = { };
|
||
|
|
||
|
networking.wireless = {
|
||
|
environmentFile = config.sops.secrets."wifi/bismarck".path;
|
||
|
networks = {
|
||
|
"Bismarck WLAN".psk = "@PSK_BISMARCK@";
|
||
|
};
|
||
|
};
|
||
|
}
|