1
0
Fork 0
mirror of https://github.com/Mic92/sops-nix.git synced 2024-12-14 11:57:52 +00:00

Fix impurity in test invocation

The system must be specified, as its default is
`builtins.currentSystem`, which is disallowed as an impure function
during flake evaluation.
This commit is contained in:
Eduard Bopp 2021-01-26 14:20:27 +01:00
parent 3c1b9197b0
commit 0be44e088b

View file

@ -20,6 +20,7 @@
'';
} {
inherit pkgs;
inherit (pkgs) system;
};
pgp-keys = makeTest {
@ -73,5 +74,6 @@
'';
} {
inherit pkgs;
inherit (pkgs) system;
};
}