feat: fixed network droppedout issue

This commit is contained in:
Nick 2025-10-01 21:40:25 -05:00
parent 34b4fb7bf3
commit fa99516ddb
3 changed files with 27 additions and 2 deletions

View file

@ -0,0 +1,22 @@
{ config, flake, ... }:
let
inherit (flake.config.people.users) user0;
in
{
networking.wireless = {
networks = {
"TheWeeFeez!" = {
psk = config.sops.secrets."wifi-home".path;
};
};
};
sops = {
secrets = {
"wifi-home" = {
path = "/var/lib/secrets/wifi-home-pass";
owner = user0;
};
};
};
}