From 34dce961d3d2057349d9385dbe71c704e5f12288 Mon Sep 17 00:00:00 2001 From: Trolli Schmittlauch Date: Thu, 11 Jan 2024 18:24:06 +0100 Subject: [PATCH] host framenix: use latest stable linux kernel to profit from fixes for new hardware --- common/default.nix | 3 --- hosts/framenix/default.nix | 9 +++++++-- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/common/default.nix b/common/default.nix index cc698e4..a5a7119 100644 --- a/common/default.nix +++ b/common/default.nix @@ -13,9 +13,6 @@ in services.davfs2.enable = true; - # try newer kernels - #boot.kernelPackages = pkgs.linuxPackages_latest; - # exfat support #boot.extraModulePackages = [ config.boot.kernelPackages.exfat-nofuse ]; diff --git a/hosts/framenix/default.nix b/hosts/framenix/default.nix index 1571457..d3d828c 100644 --- a/hosts/framenix/default.nix +++ b/hosts/framenix/default.nix @@ -10,8 +10,13 @@ networking.hostName = "framenix"; # Define your hostname. - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + # try newer kernels + boot.kernelPackages = pkgs.linuxPackages_latest; + + boot.loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; # This option defines the first version of NixOS you have installed on this particular machine, # and is used to maintain compatibility with application data (e.g. databases) created on older NixOS versions.