mirror of
https://github.com/Superredstone/nixos.git
synced 2026-03-07 20:28:08 +01:00
fix(secrets): change wifi_password owner
This commit is contained in:
@@ -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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user