From ef4aa7d5db645c902c73de25440ff07f6d9cdce6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Mon, 19 May 2025 10:15:24 +0200 Subject: [PATCH] tungsten: drop lingering configuration from vanadium --- nix/configurations/tungsten/nixos/misc.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/nix/configurations/tungsten/nixos/misc.nix b/nix/configurations/tungsten/nixos/misc.nix index 0368ad30..aa175cd6 100644 --- a/nix/configurations/tungsten/nixos/misc.nix +++ b/nix/configurations/tungsten/nixos/misc.nix @@ -1,4 +1,4 @@ -{pkgs, ...}: { +{ system.stateVersion = "24.05"; boot.loader = { @@ -8,10 +8,4 @@ }; efi.canTouchEfiVariables = true; }; - - boot.kernelPackages = pkgs.linuxPackages_6_12; - boot.kernelParams = [ - # https://community.frame.work/t/stability-issues-random-crashes-reboots-and-boot-freezes/62675/4 - "pcie_aspm=off" - ]; }