feat(nixpkgs): make sure we don't have duplicate overlays
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2025-03-05 15:05:55 -05:00
parent e44534648c
commit c97cc728e0

View file

@ -11,15 +11,14 @@ in rec {
}:
import nixpkgs {
inherit system;
overlays =
[
overlays = nixpkgs.lib.unique ([
(inputs.self.overlays.nix-version {inherit nix;})
inputs.self.overlays.misc-fixes
inputs.self.overlays.appsPackages
inputs.self.overlays.selfPackages
inputs.self.overlays.scopedPackages
]
++ (cfg.overlays or []);
++ (cfg.overlays or []));
config =
{
inherit cudaSupport;