mirror of
https://github.com/Alexandre1a/NixOSDots.git
synced 2026-03-10 00:09:46 +01:00
22 lines
349 B
Nix
22 lines
349 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}";
|
|
};
|
|
};
|
|
};
|
|
}
|