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