feat(linux): use gnome pinentry

This commit is contained in:
winston 2023-03-12 21:45:52 +01:00
parent 3d542d150e
commit 91542b44bd
Signed by: winston
GPG key ID: 3786770EDBC2B481
2 changed files with 4 additions and 1 deletions

View file

@ -104,5 +104,6 @@ in {
enable = isLinux;
enableExtraSocket = true;
enableSshSupport = true;
pinentryFlavor = "gnome3";
};
}

View file

@ -1,8 +1,10 @@
{...}: {
{pkgs, ...}: {
imports = [
./boot.nix
./network.nix
./sound.nix
./xsession.nix
];
# needed for gnome3 pinentry
services.dbus.packages = [pkgs.gcr];
}