diff options
-rw-r--r-- | nixos/configuration.nix | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 49eac2b..e299e07 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -25,7 +25,6 @@ NVD_BACKEND = "direct"; # GTK_IM_MODULE = lib.mkForce ""; }; - services.pcscd.enable = true; services.keyd = { enable = true; keyboards = { @@ -43,7 +42,7 @@ }; programs.gnupg.agent = { enable = true; - pinentryPackage = pkgs.pinentry-gtk2; + pinentryPackage = pkgs.pinentry-gnome3; enableSSHSupport = true; }; programs.gamescope = { @@ -136,6 +135,8 @@ # theme = "${import ./sddm-theme.nix {inherit pkgs;}}"; #}; #automatic-timezoned.enable = true; + pcscd.enable = true; + openssh = { enable = true; settings = { |