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.
21 lines
304 B
Nix
21 lines
304 B
Nix
5 years ago
|
{ 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;
|
||
|
|
||
|
}
|