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.
11 lines
339 B
Nix
11 lines
339 B
Nix
2 months ago
|
{ config, lib, ... }:
|
||
|
let
|
||
|
cfg = config.x-banananetwork.improvedDefaults;
|
||
|
tlpEn = config.services.tlp.enable;
|
||
|
in
|
||
|
{
|
||
|
# power-profiles-daemon gets enabled by most display managers
|
||
|
# so this suppresses this if another daemon is enabled
|
||
|
config = lib.mkIf cfg.enable { services.power-profiles-daemon.enable = lib.mkIf tlpEn false; };
|
||
|
}
|