From ca33f586e7aed0cfab8c071c5f3359b8aaf043fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Sat, 29 May 2021 10:19:00 +0200 Subject: [PATCH] fix evaluation --- common/pc/laptop/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/pc/laptop/default.nix b/common/pc/laptop/default.nix index 0117956..309e999 100644 --- a/common/pc/laptop/default.nix +++ b/common/pc/laptop/default.nix @@ -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); }