Files
nix-config/modules/home/programs/hyprland/avizo.nix
mjallen18 70002a19e2 hmm
2026-04-07 18:39:42 -05:00

26 lines
370 B
Nix
Executable File

{
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;
};
};
};
};
}