You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
490 B
Nix
30 lines
490 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.x-banananetwork.improvedDefaults;
|
|
in
|
|
{
|
|
|
|
config = lib.mkIf cfg.enable (
|
|
let
|
|
powertop = config.powerManagement.powertop;
|
|
tlp = config.services.tlp;
|
|
in
|
|
{
|
|
|
|
assertions = [
|
|
{
|
|
assertion = tlp.enable -> !powertop.enable;
|
|
message = "tlp makes powertop service useless, see https://linrunner.de/tlp/faq/powertop.html#does-powertop-conflict-with-tlp";
|
|
}
|
|
];
|
|
|
|
}
|
|
);
|
|
|
|
}
|