From 9ffe730f1bb6fc04d5a8a750d39180668257a97d Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sat, 23 May 2026 08:39:11 +0200 Subject: [PATCH] fuji: temporary switch to lts kernel for hinge detect issue --- fuji/configuration.nix | 2 +- home/common/firefox.nix | 14 -------------- 2 files changed, 1 insertion(+), 15 deletions(-) delete mode 100644 home/common/firefox.nix diff --git a/fuji/configuration.nix b/fuji/configuration.nix index c30ea5a..a5536ae 100644 --- a/fuji/configuration.nix +++ b/fuji/configuration.nix @@ -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"; diff --git a/home/common/firefox.nix b/home/common/firefox.nix deleted file mode 100644 index 26707d9..0000000 --- a/home/common/firefox.nix +++ /dev/null @@ -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"; - }; - }; -}