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 ]; }