nixos/matomo: Fix typo in assertion message (#365931)

This typo is confusing because it seems like the assertion requires nginx to be non-null (old text: "either nginx or nginx.webServerUser is mandatory").

authored by

Sam Grayson and committed by
GitHub
275baaee 569e4dc9

+1 -1
+1 -1
nixos/modules/services/web-apps/matomo.nix
··· 119 119 120 120 assertions = [ { 121 121 assertion = cfg.nginx != null || cfg.webServerUser != null; 122 - message = "Either services.matomo.nginx or services.matomo.nginx.webServerUser is mandatory"; 122 + message = "Either services.matomo.nginx or services.matomo.webServerUser is mandatory"; 123 123 }]; 124 124 125 125 users.users.${user} = {