summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--machines/zenbook/configuration.nix9
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 = {