fix brightness control

This commit is contained in:
Noah Masur 2022-04-23 17:15:14 +00:00
parent 7312243963
commit 712f0ea6a6

View File

@ -157,7 +157,10 @@
initialPassword = "changeme"; initialPassword = "changeme";
# Enable sudo privileges # Enable sudo privileges
extraGroups = [ "wheel" ]; extraGroups = [
"wheel" # Sudo privileges
"i2c" # Access to external monitors
];
# Use the fish shell # Use the fish shell
shell = pkgs.fish; shell = pkgs.fish;
@ -176,10 +179,9 @@
dmenu dmenu
xlockmore xlockmore
feh feh
xorg.xbacklight
playerctl playerctl
# i3blocks
polybar polybar
ddcutil # Monitor brightness control
# Mouse config # Mouse config
libratbag libratbag
@ -205,6 +207,9 @@
}; };
}; };
# Detect monitors (brightness)
hardware.i2c.enable = true;
# Login to Keybase in the background # Login to Keybase in the background
services.keybase.enable = true; services.keybase.enable = true;
services.kbfs = { services.kbfs = {