28 lines
374 B
Nix
28 lines
374 B
Nix
{
|
|
inputs,
|
|
self,
|
|
...
|
|
}:
|
|
|
|
/*
|
|
|
|
Loads a version of nixpkgs with nixfiles overlays loaded
|
|
|
|
*/
|
|
{
|
|
system,
|
|
nixpkgs ? inputs.nixpkgs,
|
|
overlays ? [],
|
|
...
|
|
}@args:
|
|
|
|
import nixpkgs {
|
|
inherit system;
|
|
overlays = [
|
|
self.overlays.clerie-inputs
|
|
self.overlays.clerie-pkgs
|
|
self.overlays.clerie-build-support
|
|
self.overlays.clerie-overrides
|
|
] ++ overlays;
|
|
}
|