about summary refs log tree commit diff
path: root/modules/services/thermald/default.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-05-01 19:42:25 -0700
committerFranck Cuny <franck@fcuny.net>2023-05-01 19:42:25 -0700
commitf6988202567bc5550d412f5e70125cd5e049a501 (patch)
tree1bd202120a78c0a9b938d1d7fd657bce1f9766ce /modules/services/thermald/default.nix
parentprofiles/workstation: reduce the number of moving parts (diff)
downloadworld-f6988202567bc5550d412f5e70125cd5e049a501.tar.gz
profiles/laptop: consolidate services related to laptop
Diffstat (limited to 'modules/services/thermald/default.nix')
-rw-r--r--modules/services/thermald/default.nix11
1 files changed, 0 insertions, 11 deletions
diff --git a/modules/services/thermald/default.nix b/modules/services/thermald/default.nix
deleted file mode 100644
index 78a1ac4..0000000
--- a/modules/services/thermald/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-# 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; }; };
-}