avizo + kbd backlight

This commit is contained in:
mjallen18
2026-01-15 12:50:21 -06:00
parent 3f5634317b
commit 549580395f
4 changed files with 34 additions and 10 deletions

View File

@@ -0,0 +1,20 @@
{ config, namespace, lib, ... }:
let
cfg = config.${namespace}.programs.hyprland;
in
{
config = lib.mkIf cfg.enable {
services.avizo = {
enable = true;
settings = {
default = {
time = 1.0;
y-offset = 0.5;
fade-in = 0.1;
fade-out = 0.2;
padding = 10;
};
};
};
};
}