mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 08:19:47 +01:00
22 lines
351 B
Nix
22 lines
351 B
Nix
{ config, ... }:
|
||
|
||
{
|
||
sops = {
|
||
secrets = {
|
||
"wireless/freebox-password" = {
|
||
owner = "root";
|
||
group = "root";
|
||
mode = "0400";
|
||
};
|
||
};
|
||
};
|
||
|
||
networking = {
|
||
wireless.networks = {
|
||
Freebox-357429 = {
|
||
pskRaw = "ext:${config.sops.secrets."wireless/freebox-password".path}";
|
||
};
|
||
};
|
||
};
|
||
}
|