1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-07 13:53:27 +02:00
home-manager/tests/modules/services/gpg-agent/default-homedir.nix

30 lines
701 B
Nix
Raw Normal View History

2019-10-25 17:12:40 +02:00
{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.gpg-agent.enable = true;
services.gpg-agent.pinentryPackage = pkgs.pinentry-gnome3;
2019-10-25 17:12:40 +02:00
programs.gpg.enable = true;
test.stubs = {
gnupg = { };
systemd = { }; # depends on gnupg.override
pinentry-gnome3 = { };
};
2019-10-25 17:12:40 +02:00
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
configFile=home-files/.gnupg/gpg-agent.conf
assertFileRegex $configFile "pinentry-program @pinentry-gnome3@/bin/dummy"
2019-10-25 17:12:40 +02:00
'';
};
}