From b36648de9b7bc012e793bba7732bab3573cc314e Mon Sep 17 00:00:00 2001 From: "thomas g. lopes" Date: Mon, 9 Mar 2026 13:51:31 +0000 Subject: [PATCH] fix perms --- modules/hosts/nixos.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/hosts/nixos.nix b/modules/hosts/nixos.nix index 291d5aa..9f00114 100644 --- a/modules/hosts/nixos.nix +++ b/modules/hosts/nixos.nix @@ -63,6 +63,11 @@ flake.nixosModules.nixos-host = {pkgs, ...}: { # Enable flakes nix.settings.experimental-features = [ "nix-command" "flakes" ]; + # Auto-unlock gnome-keyring on login + security.pam.services.login.enableGnomeKeyring = true; + security.pam.services.gdm.enableGnomeKeyring = true; + security.pam.services.gdm-password.enableGnomeKeyring = true; + # State version system.stateVersion = "25.11";