Flake for my desktop, laptop, and my homelab.
0

Configure Feed

Select the types of activity you want to include in your feed.

bring back gotify authentik plugin

Adam0 (Jun 15, 2026, 12:06 AM +0200) 17c18e88 68bbda04

+11
+11
modules/services/gotify.nix
··· 10 10 }: let 11 11 inherit (lib) mkForce; 12 12 13 + inherit (pkgs.nur.repos.adam0) gotifyPlugins; 14 + 15 + gotifyPluginsDrv = pkgs.symlinkJoin { 16 + name = "gotify-plugins"; 17 + paths = [gotifyPlugins.authentik]; 18 + }; 19 + 13 20 templates = config.sops.templates; 14 21 inherit (vars) groundDomain; 15 22 in { ··· 61 68 "authentik.service" 62 69 "postgresql.service" 63 70 "sops-install-secrets.service" 71 + "systemd-tmpfiles-setup.service" 64 72 "traefik.service" 65 73 # keep-sorted end 66 74 ]; ··· 71 79 "authentik.service" 72 80 "postgresql.service" 73 81 "sops-install-secrets.service" 82 + "systemd-tmpfiles-setup.service" 74 83 "traefik.service" 75 84 # keep-sorted end 76 85 ]; ··· 87 96 RestartSec = "5s"; 88 97 }; 89 98 }; 99 + 100 + systemd.tmpfiles.rules = ["L+ /var/lib/gotify/data/plugins - - - - ${gotifyPluginsDrv}"]; 90 101 91 102 systemd.services.gotify-optimize-images = { 92 103 description = "Optimize Gotify uploaded images";