nixos-config/hosts/prophet/boot/default.nix

8 lines
157 B
Nix
Raw Normal View History

2025-01-01 22:23:27 -05:00
{ lib, pkgs, ... }:
2024-11-06 11:49:40 -05:00
{
boot = {
2025-01-01 22:23:27 -05:00
kernelPackages = pkgs.linuxPackages_hardened;
initrd.systemd.services.root-reset.enable = lib.mkForce false;
2024-11-06 11:49:40 -05:00
};
}