glance: Add alloy and syncthing

This commit is contained in:
SebastianStork 2026-03-09 23:30:50 +01:00
parent 7163a31175
commit 8fe5ef9e76
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
2 changed files with 13 additions and 1 deletions

View file

@ -128,6 +128,13 @@ in
}; };
}; };
custom.services.caddy.virtualHosts.${cfg.domain}.port = lib.mkIf (cfg.domain != null) cfg.port; custom = {
services.caddy.virtualHosts.${cfg.domain}.port = lib.mkIf (cfg.domain != null) cfg.port;
meta.services.${cfg.domain} = lib.mkIf (cfg.domain != null) {
name = "Alloy";
icon = "sh:alloy";
};
};
}; };
} }

View file

@ -170,6 +170,11 @@ in
}; };
persistence.directories = [ dataDir ]; persistence.directories = [ dataDir ];
meta.services.${cfg.domain} = lib.mkIf (cfg.gui.domain != null) {
name = "Syncthing";
icon = "sh:syncthing";
};
}; };
}; };
} }