26 lines
370 B
Nix
Executable File
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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|