Skip to content

Commit

Permalink
mli-pc: replace latest kernel with 6.9 + evdi 1.14.2
Browse files Browse the repository at this point in the history
  • Loading branch information
archer-65 committed Aug 19, 2024
1 parent 5f991e6 commit cd19a49
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion system/hosts/mli-pc/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,18 @@
imports = [./hardware-configuration.nix ./options.nix];

# Kernel related
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelPackages = pkgs.linuxPackages_6_9.extend (lfinal: lprev: {
evdi = lprev.evdi.overrideAttrs (efinal: eprev: rec {
version = "1.14.2";

src = pkgs.fetchFromGitHub {
owner = "DisplayLink";
repo = "evdi";
rev = "refs/tags/v${version}";
hash = "sha256-HnZ3EmSG1MUc2maaX2HZdyfI1e/J5WEQAXPfPL1C39A=";
};
});
});

boot.kernelModules = [];
boot.kernelParams = ["intel_pstate=active" "zswap.enabled=0" "i915.force_probe=46a8"];
Expand Down

0 comments on commit cd19a49

Please sign in to comment.