diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-07 00:42:38 +0200 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-12-07 00:42:38 +0200 |
commit | c09a6b20103f1cb9fb20164fdb923ae18b36711d (patch) | |
tree | ae31a1f29edf9c7985daf3a67825fe2be3f27cba | |
parent | 32e62e90f3146e5b4b101ea8d8ab0440e9b14c36 (diff) | |
download | nixos-configuration-c09a6b20103f1cb9fb20164fdb923ae18b36711d.tar.gz nixos-configuration-c09a6b20103f1cb9fb20164fdb923ae18b36711d.tar.bz2 nixos-configuration-c09a6b20103f1cb9fb20164fdb923ae18b36711d.zip |
feat: change pinentry package to gnome
-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 = { |