fix(secrets): change wifi_password owner

This commit is contained in:
2026-03-04 22:47:19 +01:00
parent 29c9b23e9d
commit 320afbf298

View File

@@ -1,4 +1,4 @@
{ ... }: { currentSystemUser, ... }:
{ {
security.sudo.extraConfig = '' security.sudo.extraConfig = ''
Defaults pwfeedback Defaults pwfeedback
@@ -10,7 +10,9 @@
]; ];
defaultSopsFile = ../../secrets/default.sops.yaml; defaultSopsFile = ../../secrets/default.sops.yaml;
secrets = { secrets = {
"wifi_password" = { }; "wifi_password" = {
owner = currentSystemUser;
};
}; };
}; };
} }