hardware/laptop: add acpi to system packages

This commit is contained in:
Infinidoge 2021-11-03 12:39:59 -04:00
parent 627773c552
commit 6785c7cbaf

View file

@ -1,4 +1,4 @@
{ ... }: { { pkgs, ... }: {
services.xserver.libinput = { services.xserver.libinput = {
enable = true; enable = true;
touchpad.naturalScrolling = true; touchpad.naturalScrolling = true;
@ -7,4 +7,6 @@
environment.variables.LAPTOP = "True"; environment.variables.LAPTOP = "True";
services.logind.lidSwitch = "ignore"; services.logind.lidSwitch = "ignore";
environment.systemPackages = with pkgs; [ acpi ];
} }