auto up 01:59:20 up 7:21, 2 users, load average: 0.17, 0.29, 0.37

This commit is contained in:
2025-11-06 01:59:21 +01:00
parent 4729da1505
commit d073da6b38
3 changed files with 15 additions and 0 deletions

View File

@@ -16,6 +16,15 @@
security.pam.services.login.enableGnomeKeyring = true;
services.gnome.gnome-keyring.enable = true;
security.polkit.extraConfig = ''
polkit.addRule(function(action, subject) {
if (action.id == "org.freedesktop.udisks2.filesystem-mount-system" &&
subject.isInGroup("wheel")) {
return polkit.Result.YES;
}
});
'';
# Nix fun
nixpkgs.config.allowUnfree = true;
nix.settings.experimental-features = [ "flakes" "nix-command" ];