fix(helpers): use builtin nix store location indicator

This commit is contained in:
Skryta Istota 2025-11-30 11:44:23 +01:00 committed by technofab
parent 524bdf9cdc
commit d0662e3185
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -50,7 +50,7 @@ in rec {
filterJobVariables = shouldContain: job:
concatMapAttrs (
name: value:
optionalAttrs ((hasInfix "/nix/store/" value) == shouldContain) {
optionalAttrs ((hasInfix builtins.storeDir value) == shouldContain) {
${name} = value;
}
)