about summary refs log tree commit diff
path: root/modules/services/thermald/default.nix
blob: 78a1ac4dda03549dccbc343379a0d7c17392f3a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
# 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; }; };
}