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