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

12 lines
280 B
Nix
Raw Normal View History

{ config, lib, pkgs, modulesPath, ... }:
{
boot = {
kernelPackages = pkgs.linuxPackages_hardened;
2025-01-01 14:32:15 -05:00
initrd.systemd.services.root-reset.enable = lib.mkForce false;
swraid = {
enable = true;
mdadmConf = "MAILADDR contact@${config.domains.p2}";
};
};
}