1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-07-03 09:53:28 +02:00
nixos-hardware/common/pc/laptop/default.nix
Bryan Honof e4ce746d5b
Add check for power-profiles-daemon.enable
Gnome 40 now uses power-profile-daemon
https://gitlab.freedesktop.org/hadess/power-profiles-daemon ,
which clashes with tlp. This check will disable tlp whenever it finds
that the power-profiles-daemon is activated.
2021-05-26 18:54:50 +02:00

15 lines
358 B
Nix

{ config, lib, ... }:
{
imports = [ ../. ];
# 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 =
if config.services.power-profiles-daemon.enable == true then
false
else
true;
}