27 lines
417 B
Nix
27 lines
417 B
Nix
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
{
|
|
|
|
# services show up in glance in reverse import order lmao
|
|
imports = [
|
|
./smarthome/zigbee2mqtt
|
|
./vaultwarden
|
|
./gitea
|
|
./smarthome/homeassistant
|
|
./immich
|
|
./arr/bazarr
|
|
./arr/prowlarr
|
|
./qbittorrent
|
|
./arr/radarr
|
|
./arr/sonarr
|
|
./jellyfin
|
|
./nginx-proxy
|
|
./arr/flaresolverr
|
|
./smarthome/mosquitto
|
|
./uptime-kuma
|
|
./glance
|
|
];
|
|
|
|
}
|