Skip to content

Commit

Permalink
matomo: remove package from path of setup unit
Browse files Browse the repository at this point in the history
The only binary provided by the matomo package is matomo-console. This
will not work, our matomo directory is /var/lib/matomo, whereas the
matomo-console from the package will try to write in the nix store. We
have our own matomoConsole package, which provides a modified version of
matomoConsole that will use /var/lib/matomo.
  • Loading branch information
Philipp Neumann committed Sep 6, 2024
1 parent c55ced5 commit bbb253a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nixos/services/matomo/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ in {
wants = [ databaseService ];
after = [ databaseService ];

path = [ cfg.tools.matomoConsole cfg.package pkgs.acl ];
path = [ cfg.tools.matomoConsole pkgs.acl ];
inherit environment;

serviceConfig = {
Expand Down

0 comments on commit bbb253a

Please sign in to comment.