about summary refs log tree commit diff
path: root/modules/services/thermald
diff options
context:
space:
mode:
Diffstat (limited to 'modules/services/thermald')
-rw-r--r--modules/services/thermald/default.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/services/thermald/default.nix b/modules/services/thermald/default.nix
new file mode 100644
index 0000000..8325b86
--- /dev/null
+++ b/modules/services/thermald/default.nix
@@ -0,0 +1,10 @@
+# thermal control management
+{ config, lib, ... }:
+let cfg = config.my.services.thermald;
+in {
+  options.my.services.thermald = {
+    enable = lib.mkEnableOption "thermald configuration";
+  };
+
+  config = lib.mkIf cfg.enable { services.thermald = { enable = true; }; };
+}