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
2021-04-14 23:44:34 +02:00

26 lines
572 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
services.gpg-agent.enable = true;
programs.gpg = {
enable = true;
homedir = "${config.home.homeDirectory}/foo/bar";
};
nixpkgs.overlays =
[ (self: super: { gnupg = pkgs.writeScriptBin "dummy-gnupg" ""; }) ];
nmt.script = ''
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"
if [[ $in != "%t/gnupg/d."????????????????????????"/S.gpg-agent" ]]
then
echo $in
fail "gpg-agent socket directory is malformed"
fi
'';
};
}