39 lines
683 B
Nix
39 lines
683 B
Nix
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
|
|
# services show up in glance in reverse import order lmao
|
|
imports = [
|
|
./home/zigbee2mqtt
|
|
./vaultwarden
|
|
./gitea
|
|
./home/homeassistant
|
|
./immich
|
|
./arr/prowlarr
|
|
./arr/bazarr
|
|
./arr/radarr
|
|
./arr/sonarr
|
|
./audiobookshelf
|
|
./qbittorrent
|
|
./jellyfin
|
|
./caddy
|
|
./arr/flaresolverr
|
|
./home/mosquitto
|
|
./uptime-kuma
|
|
./glance
|
|
];
|
|
|
|
# add to udr to glance
|
|
modules.services.glance.links.system = [{
|
|
title = "bebe";
|
|
url = "https://bebe.lan";
|
|
error-url = "https://10.10.0.1";
|
|
check-url = "https://10.10.0.1";
|
|
icon = "di:unifi";
|
|
allow-insecure = true; }];
|
|
|
|
|
|
|
|
}
|