From c61d50bf5801d0af49326aaa776a95b26157fbd2 Mon Sep 17 00:00:00 2001 From: Gabriel Fontes Date: Sat, 8 Oct 2022 00:00:10 -0300 Subject: [PATCH] hosts/electra: use linux_hardened --- hosts/electra/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/electra/default.nix b/hosts/electra/default.nix index 10183033..ce898e3c 100644 --- a/hosts/electra/default.nix +++ b/hosts/electra/default.nix @@ -1,3 +1,4 @@ +{ pkgs, ... }: { imports = [ ./services @@ -9,5 +10,6 @@ networking.useDHCP = true; system.stateVersion = "22.05"; + boot.kernelPackages = pkgs.linuxKernel.packages.linux_hardened; }