diff options
author | EuAndreh <eu@euandre.org> | 2018-07-13 17:32:30 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-07-13 17:32:30 -0300 |
commit | f9cb27a265c1123a24a09b20156d259ac0320efa (patch) | |
tree | 93ecf445695d158a63fd31743b077ab4aaeb0409 /nixos/configuration.nix | |
parent | Use SPC-d to delete window (diff) | |
download | dotfiles-f9cb27a265c1123a24a09b20156d259ac0320efa.tar.gz dotfiles-f9cb27a265c1123a24a09b20156d259ac0320efa.tar.xz |
Add gnome-keyring dependency for enableGnomeKeyring
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index dc4ad73..93714c7 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -158,6 +158,9 @@ pdftk # + gnome3.libgnome-keyring + gnome3.gnome-keyring + ## Spell checking (aspellWithDicts (ps : with ps; [ en eo fr pt_BR ])) @@ -301,6 +304,11 @@ pcscd.enable = true; # required by yubioath }; + security = { + pam.services.lightdm.enableGnomeKeyring = true; + sudo.enable = true; + }; + users = { mutableUsers = false; @@ -340,9 +348,6 @@ }; }; - security = { - pam.services.lightdm.enableGnomeKeyring = true; - sudo.enable = true; # Derived from Guix guix-daemon.service.in # https://git.savannah.gnu.org/cgit/guix.git/tree/etc/guix-daemon.service.in?id=00c86a888488b16ce30634d3a3a9d871ed6734a2 systemd.services.guix-daemon = { |