l krops: make source.nix overrideable

This commit is contained in:
lassulus 2019-10-14 16:00:07 +02:00
parent 66816ee636
commit 539f4f09fc
1 changed files with 6 additions and 6 deletions

View File

@ -5,11 +5,6 @@
pkgs
;
host-source = if lib.pathExists (./. + "/1systems/${name}/source.nix") then
import (./. + "/1systems/${name}/source.nix") { inherit lib pkgs; }
else
{}
;
source = { test }: lib.evalSource ([
(krebs-source { test = test; })
@ -24,7 +19,12 @@
};
};
}
] ++ (lib.optional (! test) host-source));
(if lib.pathExists (./. + "/1systems/${name}/source.nix") then
import (./. + "/1systems/${name}/source.nix") { inherit lib pkgs test; }
else
{}
)
]);
in {