aboutsummaryrefslogtreecommitdiff
path: root/profiles
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-04-05 17:51:47 -0700
committerFranck Cuny <franck@fcuny.net>2022-04-05 17:51:47 -0700
commit971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f (patch)
tree428d6a111c5128d1595711260f7245b80a1c9c9a /profiles
parentcarmel: enable the sound (diff)
downloadinfra-971ffcae9bff15eb6ac6723b4d0bba7f7c54bf0f.tar.gz
create a profile for laptop
Diffstat (limited to 'profiles')
-rw-r--r--profiles/default.nix1
-rw-r--r--profiles/laptop/default.nix15
2 files changed, 16 insertions, 0 deletions
diff --git a/profiles/default.nix b/profiles/default.nix
new file mode 100644
index 0000000..0e5d948
--- /dev/null
+++ b/profiles/default.nix
@@ -0,0 +1 @@
+{ ... }: { imports = [ ./laptop ]; }
diff --git a/profiles/laptop/default.nix b/profiles/laptop/default.nix
new file mode 100644
index 0000000..f5288b6
--- /dev/null
+++ b/profiles/laptop/default.nix
@@ -0,0 +1,15 @@
+{ 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;
+ };
+}