fix evaluation

This commit is contained in:
Jörg Thalheim 2021-05-29 10:19:00 +02:00
parent 1fe5b7686d
commit ca33f586e7
No known key found for this signature in database
GPG Key ID: B3F5D81B0C6967C4
1 changed files with 1 additions and 1 deletions

View File

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