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";