1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-13 18:23:39 +02:00

[backport 22.11] tests: fix gnupg stub (#3702)

systemd now depends on `gnupg.override`, so we need a stub for systemd too.

(cherry picked from commit 7ff468105d)
This commit is contained in:
Naïm Favier 2023-02-25 00:46:15 +01:00 committed by GitHub
parent 2cb27c7911
commit 00efa2d4c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 0 deletions

View File

@ -14,6 +14,7 @@
};
test.stubs.gnupg = { };
test.stubs.systemd = { }; # depends on gnupg.override
nmt.script = ''
assertFileContains activate "export GNUPGHOME='/home/hm-user/.gnupg'"

View File

@ -9,6 +9,7 @@ with lib;
programs.gpg.enable = true;
test.stubs.gnupg = { };
test.stubs.systemd = { }; # depends on gnupg.override
nmt.script = ''
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"

View File

@ -12,6 +12,7 @@ with lib;
};
test.stubs.gnupg = { };
test.stubs.systemd = { }; # depends on gnupg.override
nmt.script = ''
in="${config.systemd.user.sockets.gpg-agent.Socket.ListenStream}"