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.
31 lines
487 B
Nix
31 lines
487 B
Nix
3 months ago
|
{ 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";
|
||
|
}
|
||
|
];
|
||
|
|
||
|
}
|
||
|
);
|
||
|
|
||
|
|
||
|
}
|