1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-30 18:38:31 +02:00
home-manager/tests/modules/services/gpg-agent/override-homedir.nix

27 lines
612 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;
2021-11-25 19:28:18 +01:00
services.gpg-agent.pinentryFlavor = null; # Don't build pinentry package.
2019-10-25 17:12:40 +02:00
programs.gpg = {
enable = true;
2021-11-25 19:28:18 +01:00
homedir = "/path/to/hash";
2019-10-25 17:12:40 +02:00
};
test.stubs.gnupg = { };
test.stubs.systemd = { }; # depends on gnupg.override
2019-10-25 17:12:40 +02:00
nmt.script = ''
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"
2021-11-25 19:28:18 +01:00
if [[ $in != "%t/gnupg/d.wp4h7ks5zxy4dodqadgpbbpz/S.gpg-agent" ]]
2019-10-25 17:12:40 +02:00
then
echo $in
fail "gpg-agent socket directory is malformed"
fi
'';
};
}