mirror of
https://cgit.krebsco.de/krops
synced 2024-11-01 00:39:48 +01:00
8 lines
120 B
Nix
8 lines
120 B
Nix
|
{ overlays ? [], ... }@args:
|
||
|
|
||
|
import <nixpkgs> (args // {
|
||
|
overlays = overlays ++ [
|
||
|
(import ./overlay.nix)
|
||
|
];
|
||
|
})
|