From fc2da628e8dbd985ef109114aeec44395188014c Mon Sep 17 00:00:00 2001 From: kurogeek Date: Tue, 24 Mar 2026 15:30:35 +0700 Subject: [PATCH] clanService/personal-computer: force change-own-password to YES --- modules/clan/personal-computer/users.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/clan/personal-computer/users.nix b/modules/clan/personal-computer/users.nix index b537c8c..ca4ad18 100644 --- a/modules/clan/personal-computer/users.nix +++ b/modules/clan/personal-computer/users.nix @@ -4,7 +4,7 @@ security.polkit.extraConfig = '' polkit.addRule(function(action, subject) { if ((action.id == "org.freedesktop.accounts.change-own-password")) { - return polkit.Result.AUTH_SELF; + return polkit.Result.YES; } }); '';