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";