summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Kummerlaender2018-06-21 12:34:27 +0200
committerAdrian Kummerlaender2018-06-21 12:34:27 +0200
commita898d4d17554b388f2b672d4e3c4f6039ab99c86 (patch)
tree864e93a4f3f9d7dac9a065780dde03263abbd5ca
parent7e8d2b53c9317825a7f84b1180d90bdcd9a29b66 (diff)
downloadnixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar.gz
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar.bz2
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar.lz
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar.xz
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.tar.zst
nixos_system-a898d4d17554b388f2b672d4e3c4f6039ab99c86.zip
Enable ACPI for asterix system monitoring
-rw-r--r--host/asterix.nix17
1 files changed, 11 insertions, 6 deletions
diff --git a/host/asterix.nix b/host/asterix.nix
index ad279ca..ddbe767 100644
--- a/host/asterix.nix
+++ b/host/asterix.nix
@@ -22,13 +22,18 @@
networkmanager.enable = true;
};
- services.xserver = {
- videoDrivers = [ "intel" ];
+ services = {
+ upower.enable = true;
+ acpid.enable = true;
- synaptics = {
- enable = true;
- twoFingerScroll = true;
- palmDetect = true;
+ xserver = {
+ videoDrivers = [ "intel" ];
+
+ synaptics = {
+ enable = true;
+ twoFingerScroll = true;
+ palmDetect = true;
+ };
};
};