From a4b77336d724fe2c423429d57a026d407d269c02 Mon Sep 17 00:00:00 2001 From: NullBite Date: Fri, 9 Aug 2024 18:50:23 -0400 Subject: [PATCH] nullbox, rpi4: hold kernel at 6.6 LTS --- hosts/nullbox/configuration.nix | 3 +++ hosts/rpi4/configuration.nix | 3 +++ 2 files changed, 6 insertions(+) diff --git a/hosts/nullbox/configuration.nix b/hosts/nullbox/configuration.nix index 8a4c2a8..32ea497 100644 --- a/hosts/nullbox/configuration.nix +++ b/hosts/nullbox/configuration.nix @@ -88,6 +88,9 @@ }; }; + # temporary while i am away from server + boot.kernelPackages = pkgs.linuxPackages_6_6; + networking.wg-quick.interfaces.wg0 = { configFile = "/etc/wireguard/wg0.conf"; autostart = true; diff --git a/hosts/rpi4/configuration.nix b/hosts/rpi4/configuration.nix index d9beed0..895c7e8 100644 --- a/hosts/rpi4/configuration.nix +++ b/hosts/rpi4/configuration.nix @@ -30,6 +30,9 @@ # Enables the generation of /boot/extlinux/extlinux.conf boot.loader.generic-extlinux-compatible.enable = true; + # temporary while i am away from server + boot.kernelPackages = pkgs.linuxPackages_6_6; + nixfiles = { profile.server.enable = true; };