Initial commit
This commit is contained in:
commit
430194beda
109 changed files with 9066 additions and 0 deletions
38
constants.nix
Normal file
38
constants.nix
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
# Domain
|
||||
domain = "cryodev.xyz";
|
||||
|
||||
# Hosts
|
||||
hosts = {
|
||||
cryodev-main = {
|
||||
ip = "100.64.0.1"; # Tailscale IP example
|
||||
};
|
||||
cryodev-pi = {
|
||||
ip = "100.64.0.2"; # Tailscale IP example
|
||||
};
|
||||
};
|
||||
|
||||
# Services
|
||||
services = {
|
||||
forgejo = {
|
||||
fqdn = "git.cryodev.xyz";
|
||||
port = 3000;
|
||||
};
|
||||
headscale = {
|
||||
fqdn = "headscale.cryodev.xyz";
|
||||
port = 8080;
|
||||
};
|
||||
headplane = {
|
||||
fqdn = "headplane.cryodev.xyz";
|
||||
port = 3001;
|
||||
};
|
||||
netdata = {
|
||||
fqdn = "netdata.cryodev.xyz";
|
||||
port = 19999;
|
||||
};
|
||||
mail = {
|
||||
fqdn = "mail.cryodev.xyz";
|
||||
port = 587;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue