Update kernel to latest stable

This commit is contained in:
thiloho
2023-07-16 02:26:39 +02:00
parent c9d4dbee65
commit eadf54d1c7

View File

@@ -1,8 +1,13 @@
{ ... }: { pkgs, ... }:
{ {
boot.loader.systemd-boot.enable = true; boot = {
boot.loader.efi.canTouchEfiVariables = true; loader = {
systemd-boot.enable = true;
efi.canTouchEfiVariables = true;
};
kernelPackages = pkgs.linuxPackages_latest;
};
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings.experimental-features = [ "nix-command" "flakes" ];