20 lines
361 B
Nix
20 lines
361 B
Nix
{ 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;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
} |