From bdb8d2773f3771ef5efc9ec243d7ed7d4b328dca Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Thu, 19 Sep 2024 14:55:21 +0200 Subject: [PATCH] feat(APPA/gethomepage): add services --- hosts/APPA/services/homepage-dashboard.nix | 47 +++++++++++++++++++++- 1 file changed, 45 insertions(+), 2 deletions(-) diff --git a/hosts/APPA/services/homepage-dashboard.nix b/hosts/APPA/services/homepage-dashboard.nix index 75aaeda..5e485c8 100644 --- a/hosts/APPA/services/homepage-dashboard.nix +++ b/hosts/APPA/services/homepage-dashboard.nix @@ -13,6 +13,10 @@ style = "row"; columns = 3; }; + "Services" = { + style = "row"; + columns = 3; + }; }; }; services = [ @@ -20,8 +24,8 @@ "Network" = [ { "Adguard Home" = { - description = "http://adguard.dryb.org"; - href = "http://adguard.dryb.org"; + description = "https://adguard.dryb.org"; + href = "https://adguard.dryb.org"; icon = "adguard-home"; }; } @@ -69,6 +73,45 @@ } ]; } + { + "Services" = [ + { + "Nextcloud" = { + description = "https://nextcloud.dryb.org"; + href = "https://nextcloud.dryb.org"; + icon = "nextcloud"; + }; + } + { + "Gitea" = { + description = "https://git.dryb.org"; + href = "https://git.dryb.org"; + icon = "gitea"; + }; + } + { + "Anki" = { + description = "https://anki.dryb.org"; + href = "https://anki.dryb.org"; + icon = "si-anki"; + }; + } + { + "Vaultwarden" = { + description = "https://vaultwarden.dryb.org"; + href = "https://vaultwarden.dryb.org"; + icon = "vaultwarden"; + }; + } + { + "Paperless" = { + description = "https://paperless.dryb.org"; + href = "https://paperless.dryb.org"; + icon = "paperless"; + }; + } + ]; + } ]; }; }