mirror of
https://cgit.krebsco.de/krops
synced 2024-11-14 15:19:47 +01:00
15 lines
306 B
Nix
15 lines
306 B
Nix
{ overlays ? [], ... }@args:
|
|
|
|
let
|
|
nix-writers = builtins.fetchGit {
|
|
url = https://cgit.krebsco.de/nix-writers/;
|
|
rev = "c528cf970e292790b414b4c1c8c8e9d7e73b2a71";
|
|
};
|
|
in
|
|
|
|
import <nixpkgs> (args // {
|
|
overlays = [
|
|
(import ./overlay.nix)
|
|
(import "${nix-writers}/pkgs")
|
|
] ++ overlays;
|
|
})
|