This commit is contained in:
mjallen18
2025-12-11 19:14:52 -06:00
parent 31202f8b0e
commit 8d1a9312cb
13 changed files with 64 additions and 37 deletions

View File

@@ -1,4 +1,4 @@
{ final, ... }:
{ pkgs, lib, ... }:
kernel: _finalModules: prevModules:
let
@@ -28,7 +28,7 @@ let
prevDrv:
prevDrv.overrideAttrs (prevAttrs: {
passthru = prevAttrs.passthru // {
settings = overrideFull (final // final.xorg) prevAttrs.passthru.settings;
settings = overrideFull (pkgs // pkgs.xorg) prevAttrs.passthru.settings;
};
});
in
@@ -37,7 +37,7 @@ with prevModules;
evdi =
multiOverride prevModules.evdi
{
inherit (final) python3;
inherit (pkgs) python3;
}
(prevAttrs: rec {
env = prevAttrs.env // {