nixfiles/home/environments/niri/avizo.nix
2025-07-26 17:06:28 -07:00

14 lines
285 B
Nix

{config, ...}: {
stylix.targets.avizo.enable = config.services.avizo.enable;
services.avizo = {
enable = false;
settings = {
default = {
block-count = 100;
block-spacing = 0;
border-radius = 8;
border-width = 2;
};
};
};
}