mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 02:39:45 +01:00
22 lines
489 B
Nix
22 lines
489 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
services.gpg-agent.enable = true;
|
|
services.gpg-agent.pinentryFlavor = null; # Don't build pinentry package.
|
|
programs.gpg.enable = true;
|
|
|
|
test.stubs.gnupg = { };
|
|
|
|
nmt.script = ''
|
|
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"
|
|
if [[ $in != "%t/gnupg/S.gpg-agent" ]]
|
|
then
|
|
echo $in
|
|
fail "gpg-agent socket directory not set to default value"
|
|
fi
|
|
'';
|
|
};
|
|
}
|