about summary refs log tree commit diff
path: root/machines/profpatsch/thinkpad.nix
blob: 4e9cf4f150000cfea11c9f505a80a62bdc77f352 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# hardware-specific configuration for Profpatsch’s thinkpads.
{ lib, config, pkgs, ... }:

{
  imports = [];

  config = {
    # Enables drivers, acpi, power management
    vuizvui.hardware.thinkpad.enable = true;

    vuizvui.services.upower.enable = lib.mkDefault true;
  };
}