2.home-manager/tests/modules/programs/zapzap/settings.nix
2025-10-26 20:58:30 -05:00

20 lines
415 B
Nix

{
programs.zapzap = {
enable = true;
settings = {
notification.donation_message = true;
website.open_page = false;
system = {
scale = 150;
theme = "dark";
wayland = true;
};
};
};
nmt.script = ''
assertFileExists home-files/.config/ZapZap/ZapZap.conf
assertFileContent home-files/.config/ZapZap/ZapZap.conf \
${./ZapZap.conf}
'';
}