assertions
This commit is contained in:
@@ -22,6 +22,17 @@ in
|
||||
};
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = !(cfg.lact.enable && cfg.corectrl.enable);
|
||||
message = "mjallen.hardware.amd: lact and corectrl cannot both be enabled — they both manage AMD GPU power profiles and will conflict.";
|
||||
}
|
||||
{
|
||||
assertion = !cfg.corectrl.enablePolkit || cfg.corectrl.polkitGroup != "";
|
||||
message = "mjallen.hardware.amd.corectrl.polkitGroup must be a non-empty group name when enablePolkit is true.";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
kernelModules = [
|
||||
"nct6775"
|
||||
|
||||
@@ -21,6 +21,17 @@ in
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.battery != "";
|
||||
message = "mjallen.hardware.battery.battery must be set to the sysfs path of the battery charge limit file (e.g. \"/sys/class/power_supply/BAT0/charge_control_end_threshold\").";
|
||||
}
|
||||
{
|
||||
assertion = cfg.chargeLimit > 0 && cfg.chargeLimit <= 100;
|
||||
message = "mjallen.hardware.battery.chargeLimit must be between 1 and 100 (got ${toString cfg.chargeLimit}).";
|
||||
}
|
||||
];
|
||||
|
||||
systemd = {
|
||||
services = {
|
||||
set-charge-limit = {
|
||||
|
||||
@@ -260,6 +260,20 @@ in
|
||||
];
|
||||
|
||||
config = lib.mkIf cfg.enable {
|
||||
assertions = [
|
||||
{
|
||||
assertion = cfg.bootType != "uboot" || cfg.firmwarePackage != null;
|
||||
message = "mjallen.hardware.raspberry-pi.firmwarePackage must be set when bootType is \"uboot\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.bootType != "kernel" || cfg.firmwarePackage != null;
|
||||
message = "mjallen.hardware.raspberry-pi.firmwarePackage must be set when bootType is \"kernel\".";
|
||||
}
|
||||
{
|
||||
assertion = cfg.nixosGenerationsDir != "";
|
||||
message = "mjallen.hardware.raspberry-pi.nixosGenerationsDir must be a non-empty path.";
|
||||
}
|
||||
];
|
||||
|
||||
boot = {
|
||||
initrd.availableKernelModules = [
|
||||
|
||||
Reference in New Issue
Block a user