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

11 lines
196 B
Nix
Raw Permalink Normal View History

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