about summary refs log tree commit diff
path: root/users/aspen/system/system/machines/bumblebee.nix
blob: 8bb52f75f0fb9d70bec47f89147f3239572d1084 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ config, lib, pkgs, ... }:
{
  imports = [
    ../modules/reusable/battery.nix
  ];

  networking.hostName = "bumblebee";

  powerManagement = {
    enable = true;
    cpuFreqGovernor = "powersave";
    powertop.enable = true;
  };

  # Hibernate on low battery
  laptop.onLowBattery = {
    enable = true;
    action = "hibernate";
    thresholdPercentage = 5;
  };

  services.xserver.xkb.options = "caps:swapescape";
}