From f56f1be44618d9edf0a9ed758f227a21724b6c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laure=CE=B7t?= Date: Fri, 23 Dec 2022 15:39:43 +0100 Subject: [PATCH] feat: use latest kernel --- hosts/neodymium/configuration.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/hosts/neodymium/configuration.nix b/hosts/neodymium/configuration.nix index 82c66bf..f69843f 100644 --- a/hosts/neodymium/configuration.nix +++ b/hosts/neodymium/configuration.nix @@ -29,6 +29,9 @@ in { # clean /tmp at each boot boot.cleanTmpDir = true; + # use latest kernel + boot.kernelPackages = pkgs.linuxPackages_latest; + # restrict nix command to sudoers nix.allowedUsers = [ "@wheel" ];