1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-25 22:18:32 +02:00

Add pkgs.acpi to gather battery status information

This commit is contained in:
Maximilian Bosch 2017-09-06 09:49:11 +02:00
parent 5340bd39d1
commit 0116223524
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,4 +1,4 @@
{ lib, ... }:
{ pkgs, lib, ... }:
with lib;
@ -15,4 +15,6 @@ with lib;
synaptics.enable = false;
libinput.enable = true;
};
environment.systemPackages = [ pkgs.acpi ];
}