aboutsummaryrefslogtreecommitdiff
path: root/profiles/laptop.nix
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
committerFranck Cuny <franck@fcuny.net>2023-12-09 09:15:23 -0800
commit543fcc38c9c48349d6988b1ace119f0cef2d6efa (patch)
treeae8174b09797fd19e365f60bf25a9d20b222c855 /profiles/laptop.nix
parentinstall kind / configure the dock (diff)
downloadinfra-543fcc38c9c48349d6988b1ace119f0cef2d6efa.tar.gz
delete even more unused configurations
Diffstat (limited to '')
-rw-r--r--profiles/laptop.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/profiles/laptop.nix b/profiles/laptop.nix
deleted file mode 100644
index 9ae1742..0000000
--- a/profiles/laptop.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ pkgs, config, lib, ... }:
-{
- imports = [
- ./workstation.nix
- ];
-
- services.logind.lidSwitch = "suspend-then-hibernate";
- services.upower.enable = true;
- services.thermald.enable = true;
-
- services.tlp.enable = true;
- services.tlp.settings = {
- CPU_SCALING_GOVERNOR_ON_AC = "performance";
- CPU_SCALING_GOVERNOR_ON_BAT = "powersave";
-
- # Keep charge between 60% and 80% to preserve battery life
- START_CHARGE_THRESH_BAT0 = 60;
- STOP_CHARGE_THRESH_BAT0 = 80;
- };
-}