system/nixos/shared/kernel.nix

10 lines
183 B
Nix
Raw Normal View History

2024-03-29 17:14:53 +03:00
{ inputs, pkgs, ... }:
{
imports = [
"${inputs.nixpkgs-unstable}/nixos/modules/profiles/hardened.nix"
];
boot.kernelPackages = pkgs.unstable.linuxPackages_6_6_hardened;
}