From fe50198759fce3975819fcf8a4dfd0b44bc4f140 Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 5 Dec 2024 18:27:30 +0100 Subject: [PATCH] xps16/tlp: init --- hosts/xps16/configuration.nix | 1 + hosts/xps16/services/tlp.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 hosts/xps16/services/tlp.nix diff --git a/hosts/xps16/configuration.nix b/hosts/xps16/configuration.nix index c4b2755..ec8f876 100644 --- a/hosts/xps16/configuration.nix +++ b/hosts/xps16/configuration.nix @@ -10,6 +10,7 @@ ./services/logiops.nix ./services/tailscale.nix ./services/thermald.nix + ./services/tlp.nix ./testconfig.nix ]; diff --git a/hosts/xps16/services/tlp.nix b/hosts/xps16/services/tlp.nix new file mode 100644 index 0000000..097e7bc --- /dev/null +++ b/hosts/xps16/services/tlp.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + services.tlp.enable = true; +}