From 6785c7cbaf1806ee00dfd95c85ead5b24979f4f5 Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 3 Nov 2021 12:39:59 -0400 Subject: [PATCH] hardware/laptop: add acpi to system packages --- profiles/hardware/laptop.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/profiles/hardware/laptop.nix b/profiles/hardware/laptop.nix index e07eac5..5e061f8 100644 --- a/profiles/hardware/laptop.nix +++ b/profiles/hardware/laptop.nix @@ -1,4 +1,4 @@ -{ ... }: { +{ pkgs, ... }: { services.xserver.libinput = { enable = true; touchpad.naturalScrolling = true; @@ -7,4 +7,6 @@ environment.variables.LAPTOP = "True"; services.logind.lidSwitch = "ignore"; + + environment.systemPackages = with pkgs; [ acpi ]; }