From dcfa900a6b8adcf9bc50a6c9c31fe91911ab518c Mon Sep 17 00:00:00 2001 From: Bun Date: Sun, 23 Mar 2025 16:10:16 -0400 Subject: [PATCH] Older hardened kernel on Kitty --- hosts/kitty/boot/default.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/hosts/kitty/boot/default.nix b/hosts/kitty/boot/default.nix index da72db02..4b9c8779 100644 --- a/hosts/kitty/boot/default.nix +++ b/hosts/kitty/boot/default.nix @@ -1,7 +1,4 @@ { pkgs, ... }: { - boot = { - kernelPackages = pkgs.linuxPackages_hardened; - plymouth.enable = true; - }; + boot.kernelPackages = pkgs.linuxPackages_5_15_hardened; }