1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-12 12:01:08 +01:00
home-manager/tests/modules/services/mako/example-config.nix
2025-05-06 21:06:15 -05:00

41 lines
813 B
Nix

{
services.mako = {
enable = true;
settings = {
actions = true;
anchor = "top-right";
background-color = "#000000";
border-color = "#FFFFFF";
border-radius = 0;
default-timeout = 0;
font = "monospace 10";
height = 100;
width = 300;
icons = true;
ignore-timeout = false;
layer = "top";
margin = 10;
markup = true;
};
criteria = {
"actionable=true" = {
anchor = "top-left";
};
"app-name=Google\\ Chrome" = {
max-visible = 5;
};
"field1=value field2=value" = {
text-alignment = "left";
};
};
};
nmt.script = ''
assertFileExists home-files/.config/mako/config
assertFileContent home-files/.config/mako/config \
${./config}
'';
}