feat(git): adding gitea and postgresql, copied jtojnar setup to play around with

This commit is contained in:
2025-09-15 11:57:01 +02:00
parent 9f2c86920f
commit 13b18e64a0
8 changed files with 311 additions and 188 deletions

View File

@@ -1,6 +1,7 @@
{
config,
lib,
pkgs,
...
}: let
srv = config.server;
@@ -23,18 +24,6 @@ in {
options.server.podman = {
enable = lib.mkEnableOption "Enables Podman";
gluetun.enable = lib.mkEnableOption "Enables gluetun";
dashy = {
enable = lib.mkEnableOption "Enable dashy";
port = lib.mkOption {
type = lib.types.int;
default = 8081;
description = "The port to host Dashy on.";
};
url = lib.mkOption {
type = lib.types.str;
default = "dashy.${srv.domain}";
};
};
qbittorrent = {
enable = lib.mkEnableOption "Enable qBittorrent";
@@ -149,15 +138,6 @@ in {
};
services.caddy.virtualHosts = lib.mkMerge [
(lib.mkIf cfg.dashy.enable {
"${cfg.dashy.url}" = {
useACMEHost = srv.domain;
extraConfig = ''
reverse_proxy http://127.0.0.1:${toString cfg.dashy.port}
'';
};
})
(lib.mkIf cfg.qbittorrent.enable {
"${cfg.qbittorrent.url}" = {
useACMEHost = srv.domain;
@@ -216,17 +196,6 @@ in {
};
})
(lib.mkIf cfg.dashy.enable {
dashy = {
image = "lissy93/dashy:latest";
autoStart = true;
ports = ["${toString cfg.dashy.port}:80"];
volumes = [
"${srv.dashy.configFile}:/app/user-data/conf.yml"
];
};
})
(lib.mkIf cfg.qbittorrent.enable {
qbittorrent = {
image = "ghcr.io/hotio/qbittorrent:latest";