19 lines
981 B
Nix
19 lines
981 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
services."nginx".virtualHosts."lor.sh".enableACME = lib.mkForce false;
|
|
services."nginx".virtualHosts."lor.sh".forceSSL = lib.mkForce false;
|
|
systemd.services."mastodon-init-db".wantedBy = lib.mkForce [ ];
|
|
systemd.services."mastodon-init-dirs".wantedBy = lib.mkForce [ ];
|
|
systemd.services."mastodon-media-auto-remove".startAt = lib.mkForce [ ];
|
|
systemd.services."mastodon-media-auto-remove".wantedBy = lib.mkForce [ ];
|
|
systemd.services."mastodon-sidekiq".wantedBy = lib.mkForce [ ];
|
|
systemd.services."mastodon-streaming".wantedBy = lib.mkForce [ ];
|
|
systemd.services."mastodon-web".wantedBy = lib.mkForce [ ];
|
|
systemd.services."nginx".wantedBy = lib.mkForce [ ];
|
|
systemd.services."nginx-config-reload".wantedBy = lib.mkForce [ ];
|
|
systemd.services."postgresqlBackup-mastodon".startAt = lib.mkForce [ ];
|
|
systemd.services."postgresqlBackup-mastodon".wantedBy = lib.mkForce [ ];
|
|
systemd.services."redis-mastodon".wantedBy = lib.mkForce [ ];
|
|
}
|