9 lines
183 B
Nix
9 lines
183 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
"${inputs.nixpkgs-unstable}/nixos/modules/profiles/hardened.nix"
|
|
];
|
|
|
|
boot.kernelPackages = pkgs.unstable.linuxPackages_6_6_hardened;
|
|
}
|