diff options
| author | Devin Finlinson <devin.finlinson@pm.me> | 2023-12-23 14:59:40 -0700 |
|---|---|---|
| committer | Devin Finlinson <devin.finlinson@pm.me> | 2023-12-23 14:59:40 -0700 |
| commit | 729c963122acf86f991e6990df62a092f6c35420 (patch) | |
| tree | 1464f1e9311631ff19d18f2c8b516972b56d5885 /machines | |
| parent | a40fc3407f8b5016979d2a19faec161bd36c3c1b (diff) | |
use lates kernel on zenbook
Diffstat (limited to 'machines')
| -rw-r--r-- | machines/zenbook/configuration.nix | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/machines/zenbook/configuration.nix b/machines/zenbook/configuration.nix index b1135a9..47aecfa 100644 --- a/machines/zenbook/configuration.nix +++ b/machines/zenbook/configuration.nix @@ -10,9 +10,12 @@ ]; # Use the systemd-boot EFI boot loader. - boot.loader = { - systemd-boot.enable = true; - efi.canTouchEfiVariables = true; + boot = { + loader = { + systemd-boot.enable = true; + efi.canTouchEfiVariables = true; + }; + kernelPackages = pkgs.linuxPackages_latest; # use latest kernel }; nixpkgs = { |
