Implement home-manager

This commit is contained in:
2026-03-01 08:19:46 +01:00
parent 689efaa75b
commit 956ace75b0
31 changed files with 764 additions and 22 deletions

View File

@@ -0,0 +1,27 @@
{
lib,
...
}:
{
dconf.settings = {
"org/gnome/settings-daemon/plugins/media-keys" = {
custom-keybindings = lib.mkAfter [
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom2/"
"/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom3/"
];
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom2" = {
binding = "<Shift><Control><Alt>Home";
command = "ddcutil setvcp 10 + 10";
name = "Bright Up";
};
"org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom3" = {
binding = "<Shift><Control><Alt>End";
command = "ddcutil setvcp 10 - 10";
name = "Bright Down";
};
};
}