From eadf54d1c75cdb3a006274553202ed9ed6522b01 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sun, 16 Jul 2023 02:26:39 +0200 Subject: [PATCH] Update kernel to latest stable --- nixos-configurations/shared.nix | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/nixos-configurations/shared.nix b/nixos-configurations/shared.nix index 9af94f6..6a47252 100644 --- a/nixos-configurations/shared.nix +++ b/nixos-configurations/shared.nix @@ -1,8 +1,13 @@ -{ ... }: +{ pkgs, ... }: { - boot.loader.systemd-boot.enable = true; - boot.loader.efi.canTouchEfiVariables = true; + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelPackages = pkgs.linuxPackages_latest; + }; nix.settings.experimental-features = [ "nix-command" "flakes" ];