mirror of
https://github.com/Mic92/sops-nix.git
synced 2025-03-16 13:38:20 +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;
|
||||||
|
inherit (pkgs) system;
|
||||||
};
|
};
|
||||||
|
|
||||||
pgp-keys = makeTest {
|
pgp-keys = makeTest {
|
||||||
|
@ -73,5 +74,6 @@
|
||||||
'';
|
'';
|
||||||
} {
|
} {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
|
inherit (pkgs) system;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue