{ config, lib, ... }: let cfg = config.my.profiles.laptop; in { options.my.profiles.laptop = with lib; { enable = mkEnableOption "laptop profile"; }; config = lib.mkIf cfg.enable { # monitors and controls temperature my.services.thermald.enable = true; # Enable TLP power management my.services.tlp.enable = true; }; }