mirror of
https://cgit.krebsco.de/krops/
synced 2025-01-11 02:36:50 +00:00
16 lines
306 B
Nix
16 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;
|
|
})
|