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/override-homedir.nix
2021-12-08 00:01:29 +01:00

26 lines
554 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;
homedir = "/path/to/hash";
};
test.stubs.gnupg = { };
nmt.script = ''
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"
if [[ $in != "%t/gnupg/d.wp4h7ks5zxy4dodqadgpbbpz/S.gpg-agent" ]]
then
echo $in
fail "gpg-agent socket directory is malformed"
fi
'';
};
}