initial commit
Some checks failed
Deploy configs / deploy-configs (push) Failing after 11s

This commit is contained in:
sid 2026-02-23 20:53:29 +01:00
commit 7d364cdfac
69 changed files with 5268 additions and 0 deletions

43
constants.nix Normal file
View file

@ -0,0 +1,43 @@
rec {
domain = "sid.ovh";
hosts = {
sid = {
ip = "100.64.0.6";
};
rx4 = {
ip = "100.64.0.10";
};
vde = {
ip = "100.64.0.1";
};
};
services = {
docs = {
fqdn = "doc." + domain;
};
forgejo = {
fqdn = "git." + domain;
port = 3456;
};
miniflux = {
fqdn = "rss." + domain;
port = 8085;
};
netdata = {
fqdn = "netdata.sid.tail";
port = 19999;
};
open-webui-oci = {
fqdn = "ai." + domain;
port = 8083;
};
rss-bridge = rec {
subdomain = "rss-bridge";
fqdn = subdomain + "." + domain;
};
webdav = {
fqdn = "dav.rx4.tail";
port = 8080;
};
};
}