mirror of
https://cgit.krebsco.de/krops
synced 2024-10-31 16:29:47 +01:00
d51f353cb3
This makes the evaluation of krops pure (no import from derivation) and makes it faster since the fetchGit result might be garbage collected.
7 lines
120 B
Nix
7 lines
120 B
Nix
{ overlays ? [], ... }@args:
|
|
|
|
import <nixpkgs> (args // {
|
|
overlays = [
|
|
(import ./overlay.nix)
|
|
] ++ overlays;
|
|
})
|