11 lines
213 B
Nix
11 lines
213 B
Nix
|
{ config, lib, pkgs, modulesPath, ... }:
|
||
|
{
|
||
|
boot = {
|
||
|
kernelPackages = pkgs.linuxPackages_hardened;
|
||
|
swraid = {
|
||
|
enable = true;
|
||
|
mdadmConf = "MAILADDR contact@${config.domains.p2}";
|
||
|
};
|
||
|
};
|
||
|
}
|