1
0
Fork 0
mirror of https://github.com/NixOS/nixos-hardware.git synced 2024-10-18 14:35:21 -04:00

Add lib.mkDefault to the statement

This commit is contained in:
Bryan Honof 2021-05-26 19:00:01 +02:00
parent e4ce746d5b
commit 2bc26b3c5c
No known key found for this signature in database
GPG key ID: D357EDE705510390

View file

@ -6,9 +6,9 @@
# Gnome 40 introduced a new way of managing power, without tlp. # Gnome 40 introduced a new way of managing power, without tlp.
# However, these 2 services clash when enabled simultaneously. # However, these 2 services clash when enabled simultaneously.
# https://github.com/NixOS/nixos-hardware/issues/260 # https://github.com/NixOS/nixos-hardware/issues/260
services.tlp.enable = services.tlp.enable = lib.mkDefault
if config.services.power-profiles-daemon.enable == true then (if config.services.power-profiles-daemon.enable == true then
false false
else else
true; true);
} }