mirror of
https://github.com/Mic92/sops-nix.git
synced 2024-12-15 17:50:51 +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:
parent
3c1b9197b0
commit
0be44e088b
1 changed files with 2 additions and 0 deletions
|
@ -20,6 +20,7 @@
|
|||
'';
|
||||
} {
|
||||
inherit pkgs;
|
||||
inherit (pkgs) system;
|
||||
};
|
||||
|
||||
pgp-keys = makeTest {
|
||||
|
@ -73,5 +74,6 @@
|
|||
'';
|
||||
} {
|
||||
inherit pkgs;
|
||||
inherit (pkgs) system;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue