feat(nixpkgs): make sure we don't have duplicate overlays
All checks were successful
Discord / discord commits (push) Has been skipped
All checks were successful
Discord / discord commits (push) Has been skipped
This commit is contained in:
parent
e44534648c
commit
c97cc728e0
1 changed files with 2 additions and 3 deletions
|
@ -11,15 +11,14 @@ in rec {
|
||||||
}:
|
}:
|
||||||
import nixpkgs {
|
import nixpkgs {
|
||||||
inherit system;
|
inherit system;
|
||||||
overlays =
|
overlays = nixpkgs.lib.unique ([
|
||||||
[
|
|
||||||
(inputs.self.overlays.nix-version {inherit nix;})
|
(inputs.self.overlays.nix-version {inherit nix;})
|
||||||
inputs.self.overlays.misc-fixes
|
inputs.self.overlays.misc-fixes
|
||||||
inputs.self.overlays.appsPackages
|
inputs.self.overlays.appsPackages
|
||||||
inputs.self.overlays.selfPackages
|
inputs.self.overlays.selfPackages
|
||||||
inputs.self.overlays.scopedPackages
|
inputs.self.overlays.scopedPackages
|
||||||
]
|
]
|
||||||
++ (cfg.overlays or []);
|
++ (cfg.overlays or []));
|
||||||
config =
|
config =
|
||||||
{
|
{
|
||||||
inherit cudaSupport;
|
inherit cudaSupport;
|
||||||
|
|
Loading…
Add table
Reference in a new issue