1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-02 19:38:32 +02:00
home-manager/tests/modules/services/gpg-agent/default-homedir.nix
2021-12-08 00:01:29 +01:00

23 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
'';
};
}