From 379b4602aef8652350fbacc0667349300b70134e Mon Sep 17 00:00:00 2001 From: Erwin Boskma Date: Sun, 28 May 2023 12:48:51 +0200 Subject: [PATCH] Update to Linux 6.3 --- machines/loki/configuration.nix | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/machines/loki/configuration.nix b/machines/loki/configuration.nix index f34fb03..ba1b7be 100644 --- a/machines/loki/configuration.nix +++ b/machines/loki/configuration.nix @@ -25,7 +25,6 @@ base = { plymouth.enable = true; work = false; - kernel = pkgs.linuxKernel.packages.linux_6_2; udev-rules = { qmk = true; solo2 = true; @@ -66,12 +65,15 @@ systemd.enable = true; }; - boot.loader = { - systemd-boot = { - enable = true; - configurationLimit = 10; + boot = { + kernelPackages = pkgs.linuxPackages_6_3; + loader = { + systemd-boot = { + enable = true; + configurationLimit = 10; + }; + efi.canTouchEfiVariables = true; }; - efi.canTouchEfiVariables = true; }; time.timeZone = "Europe/Amsterdam";