aboutsummaryrefslogtreecommitdiffstats
path: root/apps/feed-nomath-org/module.nix
blob: e9c0937612adeb99bdb44de9220a7b4581134d9e (plain)
1
2
3
4
5
6
{ appConfig, lib, pkgs, ... }: {
  systemd.services."feed-nomath-org".environment.PORT = "8080";
  systemd.services."feed-nomath-org".environment.REPOSITORIES = lib.concatStringsSep ":" appConfig.repositories;
  systemd.services."feed-nomath-org".script = "${pkgs.feed-nomath-org}/bin/feed-nomath-org";
  systemd.services."feed-nomath-org".wantedBy = [ "multi-user.target" ];
}