mirror of
https://github.com/henrysipp/omarchy-nix.git
synced 2026-06-05 18:29:26 -05:00
fba993c589
* Set nix official formatter for the flake * format the entire project
43 lines
784 B
Nix
43 lines
784 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cfg = config.omarchy;
|
|
in
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
|
|
settings = {
|
|
background-color = "#${config.colorScheme.palette.base00}";
|
|
text-color = "#${config.colorScheme.palette.base05}";
|
|
border-color = "#${config.colorScheme.palette.base04}";
|
|
progress-color = "#${config.colorScheme.palette.base0D}";
|
|
|
|
width = 420;
|
|
height = 110;
|
|
padding = "10";
|
|
margin = "10";
|
|
border-size = 2;
|
|
border-radius = 0;
|
|
|
|
anchor = "top-right";
|
|
layer = "overlay";
|
|
|
|
default-timeout = 5000;
|
|
ignore-timeout = false;
|
|
max-visible = 5;
|
|
sort = "-time";
|
|
|
|
group-by = "app-name";
|
|
|
|
actions = true;
|
|
|
|
format = "<b>%s</b>\\n%b";
|
|
markup = true;
|
|
};
|
|
};
|
|
}
|