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

11 lines
200 B
Nix
Raw Normal View History

2025-01-01 22:23:27 -05:00
{ config, lib, pkgs, ... }:
{
2025-01-23 13:57:54 -05:00
boot = {
kernelPackages = pkgs.linuxPackages_hardened;
swraid = {
enable = true;
mdadmConf = "MAILADDR contact@${config.domains.p2}";
};
};
}