You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
dotfiles/nixos/lenovo-configuration.nix

21 lines
304 B
Nix

{ config, pkgs, ... }:
{
services = {
# power management
#tlp.enable = true;
upower.enable = true;
};
powerManagement.scsiLinkPolicy = "med_power_with_dipm";
# sound
sound.enable = true;
hardware.pulseaudio.enable = true;
# backlight
hardware.acpilight.enable = true;
}