fuji: temporary switch to lts kernel for hinge detect issue

This commit is contained in:
2026-05-23 08:39:11 +02:00
parent f8283e61df
commit 9ffe730f1b
2 changed files with 1 additions and 15 deletions

View File

@@ -93,7 +93,7 @@ in
"xe.force_probe=a7a0"
"i915.force_probe=!a7a0"
];
kernelPackages = pkgs.linuxPackages_latest;
#kernelPackages = pkgs.linuxPackages_latest;
kernel.sysctl = {
"net.core.default_qdisc" = "fq";
"net.ipv4.tcp_congestion_control" = "bbr";

View File

@@ -1,14 +0,0 @@
{ pkgs, ... }: {
programs.firefox = {
enable = true;
package = pkgs.symlinkJoin {
name = "firefox-no-scudo";
paths = [ pkgs.firefox ];
nativeBuildInputs = [ pkgs.makeWrapper ];
postBuild = ''
wrapProgram $out/bin/firefox --unset LD_PRELOAD
'';
meta.mainProgram = "firefox";
};
};
}