mirror of
https://github.com/Theaninova/TheaninovOS.git
synced 2025-12-12 11:36:20 +00:00
17 lines
318 B
Nix
17 lines
318 B
Nix
{
|
|
pkgs,
|
|
homeDirectory,
|
|
...
|
|
}: {
|
|
services = {
|
|
gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
pinentryFlavor = "gnome3";
|
|
};
|
|
# fix pinentry on non-gnome with this in
|
|
# the system config: services.dbus.packages = with pkgs; [ gcr ];
|
|
gnome-keyring.enable = true;
|
|
};
|
|
}
|