Sway: Difference between revisions

Phobos (talk | contribs)
m Added a section for Secret Service usage
Phobos (talk | contribs)
mNo edit summary
 
(One intermediate revision by the same user not shown)
Line 125: Line 125:
Install and enable:
Install and enable:
{{File|3=services.gnome.gnome-keyring.enable = true;|name=/etc/nixos/configuration.nix|lang=nix}}
{{File|3=services.gnome.gnome-keyring.enable = true;|name=/etc/nixos/configuration.nix|lang=nix}}
In order to unlock the keyring unlock on login or after logging back in from a screen locking utility you will need to enable them for PAM:
In order to unlock the keyring through logins from greeters and screen locking utilities you will need to enable them through PAM.
{{File|3=security.pam.services = {
{{File|3=security.pam.services = {
   gdm.enableGnomeKeyring = true;
   greetd.enableGnomeKeyring = true;
   swaylock.enableGnomeKeyring = true;
   swaylock.enableGnomeKeyring = true;
  # If using a display manager such as GDM
  #gdm.enableGnomeKeyring = true;
};|name=/etc/nixos/configuration.nix|lang=nix}}
};|name=/etc/nixos/configuration.nix|lang=nix}}