homepage: init declarative config
This commit is contained in:
parent
e49c383f4b
commit
4b77973121
5 changed files with 553 additions and 8 deletions
|
@ -1,12 +1,12 @@
|
|||
{...}: {
|
||||
imports = [
|
||||
./hass
|
||||
./homepage
|
||||
./restic.nix
|
||||
./traefik.nix
|
||||
./stash.nix
|
||||
./jellyfin.nix
|
||||
./wallos.nix
|
||||
./homepage.nix
|
||||
./searxng.nix
|
||||
./anki-sync-server.nix
|
||||
./paperless.nix
|
||||
|
|
|
@ -1,7 +0,0 @@
|
|||
_: {
|
||||
services.homepage-dashboard = {
|
||||
enable = true;
|
||||
listenPort = 7676;
|
||||
openFirewall = true;
|
||||
};
|
||||
}
|
85
hosts/yuki/services/homepage/default.nix
Normal file
85
hosts/yuki/services/homepage/default.nix
Normal file
|
@ -0,0 +1,85 @@
|
|||
{config, ...}: {
|
||||
imports = [
|
||||
./widgets.nix
|
||||
./services.nix
|
||||
];
|
||||
|
||||
sops.secrets.homepage-secrets = {
|
||||
sopsFile = ../../../../secrets/homepage/secrets.yaml;
|
||||
};
|
||||
|
||||
services.homepage-dashboard = {
|
||||
enable = true;
|
||||
listenPort = 7676;
|
||||
openFirewall = true;
|
||||
environmentFile = config.sops.secrets.homepage-secrets.path;
|
||||
settings = {
|
||||
base = "https://dashboard.internal.flake.sh/";
|
||||
title = "kumo";
|
||||
language = "en";
|
||||
headerStyle = "boxedWidgets";
|
||||
disableCollape = true;
|
||||
favicon = "https://em-content.zobj.net/source/twitter/376/cloud_2601-fe0f.png";
|
||||
background = "https://i.imgur.com/uU6Jbum.jpg";
|
||||
cardBlur = "md";
|
||||
theme = "dark";
|
||||
color = "gray";
|
||||
fiveColumns = true;
|
||||
statusStyle = "dot";
|
||||
hideVersion = true;
|
||||
providers = {
|
||||
openweathermap = "{{HOMEPAGE_VAR_OPENWEATHERMAP}}";
|
||||
};
|
||||
layout = [
|
||||
{
|
||||
"Sora" = {
|
||||
style = "row";
|
||||
columns = 3;
|
||||
};
|
||||
}
|
||||
{
|
||||
"News" = {
|
||||
style = "row";
|
||||
columns = 1;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Infra" = {
|
||||
style = "row";
|
||||
columns = 4;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Networking" = {
|
||||
style = "row";
|
||||
columns = 1;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Monitoring" = {
|
||||
style = "row";
|
||||
columns = 2;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Media" = {
|
||||
style = "row";
|
||||
columns = 2;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Storage" = {
|
||||
style = "row";
|
||||
columns = 1;
|
||||
};
|
||||
}
|
||||
{
|
||||
"Misc" = {
|
||||
style = "row";
|
||||
columns = 5;
|
||||
};
|
||||
}
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
437
hosts/yuki/services/homepage/services.nix
Normal file
437
hosts/yuki/services/homepage/services.nix
Normal file
|
@ -0,0 +1,437 @@
|
|||
_: {
|
||||
services.homepage-dashboard.services = [
|
||||
{
|
||||
"Sora" = let
|
||||
glancesUrl = "http://100.104.42.96:61208";
|
||||
in [
|
||||
{
|
||||
"INF" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "info";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"CPU" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "cpu";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"RAM" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "memory";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"PROC" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "process";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"NET" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "network:eth0";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"FS" = {
|
||||
widget = {
|
||||
type = "glances";
|
||||
url = glancesUrl;
|
||||
metric = "fs:/etc/hosts";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"News" = [
|
||||
{
|
||||
"Miniflux" = {
|
||||
icon = "miniflux";
|
||||
href = "https://rss.internal.flake.sh";
|
||||
widget = {
|
||||
type = "miniflux";
|
||||
url = "";
|
||||
key = "{{HOMEPAGE_VAR_MINIFLUX_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Infra" = [
|
||||
{
|
||||
"Proxmox" = {
|
||||
icon = "proxmox";
|
||||
href = "https://pve.internal.flake.sh:8006";
|
||||
widget = {
|
||||
type = "proxmox";
|
||||
url = "https://192.168.1.36:8006";
|
||||
username = "{{HOMEPAGE_VAR_PROXMOX_USER}}";
|
||||
password = "{{HOMEPAGE_VAR_PROXMOX_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Proxmox Backup Server" = {
|
||||
icon = "proxmox";
|
||||
href = "https://pbs.internal.flake.sh:8007";
|
||||
widget = {
|
||||
type = "proxmoxbackupserver";
|
||||
url = "https://192.168.1.38:8007";
|
||||
username = "{{HOMEPAGE_VAR_PBS_USER}}";
|
||||
password = "{{HOMEPAGE_VAR_PBS_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"TrueNAS" = {
|
||||
icon = "truenas-scale";
|
||||
href = "https://truenas.internal.flake.sh";
|
||||
widget = {
|
||||
type = "truenas";
|
||||
url = "https://192.168.1.199";
|
||||
key = "{{HOMEPAGE_VAR_TRUENAS_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Home Assistant" = {
|
||||
icon = "home-assistant";
|
||||
href = "http://hass.internal.flake.sh:8123";
|
||||
widget = {
|
||||
type = "homeassistant";
|
||||
url = "http://192.168.1.98:8123";
|
||||
key = "{{HOMEPAGE_VAR_HASS_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Networking" = [
|
||||
{
|
||||
"Ubiquiti" = {
|
||||
icon = "ubiquiti";
|
||||
href = "https://udm.internal.flake.sh";
|
||||
widget = {
|
||||
type = "unifi";
|
||||
url = "https://192.168.1.1";
|
||||
username = "api";
|
||||
password = "{{HOMEPAGE_VAR_UBIQUITI_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Traefik" = {
|
||||
icon = "traefik";
|
||||
href = "http://192.168.1.98:8080/dashboard";
|
||||
widget = {
|
||||
type = "traefik";
|
||||
url = "http://192.168.1.98:8080";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Gluetun" = {
|
||||
icon = "gluetun";
|
||||
href = "http://192.168.1.54:8000";
|
||||
widget = {
|
||||
type = "gluetun";
|
||||
url = "http://192.168.1.54:8000";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Blocky" = {
|
||||
icon = "blocky";
|
||||
href = "http://192.168.1.103:4000";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Monitoring" = [
|
||||
{
|
||||
"Grafana" = {
|
||||
icon = "grafana";
|
||||
href = "https://metrics.flake.sh";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Prometheus" = {
|
||||
icon = "prometheus";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Uptime Kuma" = {
|
||||
icon = "uptime-kuma";
|
||||
href = "https://status.flake.sh/dashboard";
|
||||
widget = {
|
||||
type = "uptimekuma";
|
||||
url = "https://status.flake.sh";
|
||||
slug = "kumo";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"ntfy" = {
|
||||
icon = "ntfy";
|
||||
href = "https://ntfy.flake.sh";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Media" = let
|
||||
kariruIp = "http://192.168.1.54:";
|
||||
in [
|
||||
{
|
||||
"Jellyfin" = {
|
||||
icon = "jellyfin";
|
||||
href = "https://jellyfin.internal.flake.sh/";
|
||||
widget = {
|
||||
type = "jellyfin";
|
||||
url = "http://192.168.1.98:8096";
|
||||
key = "{{HOMEPAGE_VAR_JELLYFIN_KEY}}";
|
||||
enableBlocks = true;
|
||||
enableNowPlaying = false;
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Jellyseerr" = {
|
||||
icon = "jellyseerr";
|
||||
href = "https://jellyseerr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "jellyseerr";
|
||||
url = "http://192.168.1.98:5055";
|
||||
key = "{{HOMEPAGE_VAR_JELLYSEERR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Sonarr" = {
|
||||
icon = "sonarr";
|
||||
href = "https://sonarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "sonarr";
|
||||
url = "${kariruIp}8989";
|
||||
key = "{{HOMEPAGE_VAR_SONARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Radarr" = {
|
||||
icon = "radarr";
|
||||
href = "https://radarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "radarr";
|
||||
url = "${kariruIp}7878";
|
||||
key = "{{HOMEPAGE_VAR_RADARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Readarr" = {
|
||||
icon = "readarr";
|
||||
href = "https://readarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "readarr";
|
||||
url = "${kariruIp}8787";
|
||||
key = "{{HOMEPAGE_VAR_READARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Lidarr" = {
|
||||
icon = "lidarr";
|
||||
href = "https://lidarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "lidarr";
|
||||
url = "${kariruIp}8686";
|
||||
key = "{{HOMEPAGE_VAR_LIDARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Bazarr" = {
|
||||
icon = "bazarr";
|
||||
href = "https://bazarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "bazarr";
|
||||
url = "${kariruIp}6767";
|
||||
key = "{{HOMEPAGE_VAR_BAZARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Prowlarr" = {
|
||||
icon = "prowlarr";
|
||||
href = "https://prowlarr.internal.flake.sh";
|
||||
widget = {
|
||||
type = "prowlarr";
|
||||
url = "${kariruIp}9696";
|
||||
key = "{{HOMEPAGE_VAR_PROWLARR_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"qBittorrent" = {
|
||||
icon = "qbittorrent";
|
||||
href = "http://192.168.1.54:8080";
|
||||
widget = {
|
||||
type = "qbittorrent";
|
||||
url = "http://192.168.1.54:8080";
|
||||
username = "notoh";
|
||||
password = "{{HOMEPAGE_VAR_QBIT_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"SABnzbd" = {
|
||||
icon = "sabnzbd";
|
||||
href = "http://192.168.1.54:9292/sabnzbd/";
|
||||
widget = {
|
||||
type = "sabnzbd";
|
||||
url = "http://192.168.1.54:9292";
|
||||
key = "{{HOMEPAGE_VAR_SABNZBD_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Whisparr" = {
|
||||
icon = "whisparr";
|
||||
href = "http://whisparr.internal.flake.sh/";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Servarr" = {
|
||||
icon = "servarr";
|
||||
href = "https://wiki.servarr.com/";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Storage" = [
|
||||
{
|
||||
"Nextcloud" = {
|
||||
icon = "nextcloud";
|
||||
href = "https://nextcloud.internal.flake.sh:9001";
|
||||
widget = {
|
||||
type = "nextcloud";
|
||||
url = "https://192.168.1.199:9001";
|
||||
username = "notoh";
|
||||
password = "{{HOMEPAGE_VAR_NEXTCLOUD_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Synology" = {
|
||||
icon = "synology";
|
||||
href = "https://synology.internal.flake.sh:5001/";
|
||||
widget = {
|
||||
type = "diskstation";
|
||||
url = "https://192.168.1.71:5001";
|
||||
username = "homepage";
|
||||
password = "{{HOMEPAGE_VAR_SYNOLOGY_PWD}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Paperless-ngx" = {
|
||||
icon = "paperless-ngx";
|
||||
href = "https://paperless.internal.flake.sh";
|
||||
widget = {
|
||||
type = "paperlessngx";
|
||||
url = "http://100.108.113.89:28981";
|
||||
key = "{{HOMEPAGE_VAR_PAPERLESS_KEY}}";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
"Minio" = {
|
||||
icon = "minio";
|
||||
href = "http://100.69.79.81:9006/browser/";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
{
|
||||
"Misc" = [
|
||||
{
|
||||
"Forgejo" = {
|
||||
icon = "forgejo";
|
||||
href = "https://git.flake.sh/explore/repos";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Hetzner" = {
|
||||
icon = "hetzner";
|
||||
href = "https://accounts.hetzner.com/login";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Backblaze" = {
|
||||
icon = "backblaze";
|
||||
href = "https://secure.backblaze.com";
|
||||
};
|
||||
}
|
||||
{
|
||||
"notohh.dev" = {
|
||||
icon = "hugo";
|
||||
href = "https://notohh.dev/";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Stash" = {
|
||||
icon = "stash";
|
||||
href = "https://stash.internal.flake.sh";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Cloudflare" = {
|
||||
icon = "cloudflare";
|
||||
href = "https://dash.cloudflare.com";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Tailscale" = {
|
||||
icon = "tailscale";
|
||||
href = "https://login.tailscale.com/admin/machines";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Hedgedoc" = {
|
||||
icon = null;
|
||||
href = "https://scratch.flake.sh";
|
||||
};
|
||||
}
|
||||
{
|
||||
"Wallos" = {
|
||||
icon = null;
|
||||
href = "https://wallos.internal.flake.sh";
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
||||
];
|
||||
}
|
30
hosts/yuki/services/homepage/widgets.nix
Normal file
30
hosts/yuki/services/homepage/widgets.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
_: {
|
||||
services.homepage-dashboard.widgets = [
|
||||
{
|
||||
greeting = {
|
||||
text_size = "l";
|
||||
text = "おかえりなさい!";
|
||||
};
|
||||
}
|
||||
{
|
||||
datetime = {
|
||||
text_size = "l";
|
||||
format = {
|
||||
timeStyle = "short";
|
||||
dateStyle = "short";
|
||||
hourCycle = "h23";
|
||||
};
|
||||
};
|
||||
}
|
||||
{
|
||||
openweathermap = {
|
||||
label = "New York";
|
||||
latitude = "40.730610";
|
||||
longitude = "-73.935242";
|
||||
units = "metric";
|
||||
provider = "openweathermap";
|
||||
cache = 5;
|
||||
};
|
||||
}
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue