wluma: add config file to home-manager

This commit is contained in:
Khaïs COLIN 2024-07-30 15:06:20 +02:00
parent 31fd5d3f77
commit 516155deb4
3 changed files with 18 additions and 0 deletions

View file

@ -41,6 +41,7 @@
./wm/waybar.nix
stylix.homeManagerModules.stylix
./stylix.nix
./wm/wluma.nix
];
extraSpecialArgs = {
inherit inputs breezex-cursor system;

View file

@ -0,0 +1,12 @@
[als.webcam]
video = 0
thresholds = { 0 = "night", 7 = "dark", 9 = "dim", 11 = "normal", 13 = "bright", 16 = "normal", 18 = "dark", 20 = "night" }
[[output.backlight]]
name = "eDP-1"
path = "/sys/class/backlight/intel_backlight"
capturer = "wlroots"
[[keyboard]]
name = "keyboard-t470"
path = "/sys/bus/platform/devices/thinkpad_acpi/leds/tpacpi::kbd_backlight/"

View file

@ -0,0 +1,5 @@
{
home.file.".config/wluma/config.toml" = {
source = ./wluma-config.toml;
};
}