mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
14 lines
285 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|