summaryrefslogtreecommitdiffstats
path: root/nixos/modules/services/video
diff options
context:
space:
mode:
authorJade Lovelace <software@lfcode.ca>2023-10-03 22:21:50 -0700
committerJade Lovelace <software@lfcode.ca>2024-01-19 00:11:34 -0800
commit6c5ab28fcee342254aa9c8704008e2f33dc0dde1 (patch)
tree789c6f81027e0c9bc16329dae263ce758f45fe15 /nixos/modules/services/video
parentb8da5d6a3c690909ea3721cded8b8bd0e8476e18 (diff)
nixos: fix a bunch of services missing dep on network-online.target
This was done by generating a truly hilarious configuration: rg 'services\.[^.]+\.enable\t' opts-tags | cut -f1 > allonconfig.nix The following were not tested due to other evaluation errors. They should probably be manually audited. services.amule services.castopod services.ceph services.chatgpt-retrieval-plugin services.clamsmtp services.clight services.dante services.dex services.discourse services.dwm-status services.engelsystem services.foundationdb services.frigate services.frp services.grocy services.guacamole-client services.hedgedoc services.home-assistant services.honk services.imaginary services.jitsi-meet services.kerberos_server services.limesurvey services.mastodon services.mediawiki services.mobilizon services.moodle services.mosquitto services.nextcloud services.nullmailer services.patroni services.pfix-srsd services.pgpkeyserver-lite services.postfixadmin services.roundcube services.schleuder services.self-deploy services.slskd services.spacecookie services.statsd services.step-ca services.sympa services.tsmBackup services.vdirsyncer services.vikunja services.yandex-disk services.zabbixWeb
Diffstat (limited to 'nixos/modules/services/video')
-rw-r--r--nixos/modules/services/video/go2rtc/default.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/nixos/modules/services/video/go2rtc/default.nix b/nixos/modules/services/video/go2rtc/default.nix
index 13851fa0306f..9dddbb60baa8 100644
--- a/nixos/modules/services/video/go2rtc/default.nix
+++ b/nixos/modules/services/video/go2rtc/default.nix
@@ -94,6 +94,7 @@ in
config = lib.mkIf cfg.enable {
systemd.services.go2rtc = {
+ wants = [ "network-online.target" ];
after = [
"network-online.target"
];