22 lines
345 B
Nix
22 lines
345 B
Nix
|
|
{
|
||
|
|
jellyfin = {
|
||
|
|
domain = "jf.mc-fucker.cool";
|
||
|
|
port = "8096";
|
||
|
|
};
|
||
|
|
|
||
|
|
podman = {
|
||
|
|
extraOptions = [
|
||
|
|
"--dns=100.100.100.100"
|
||
|
|
"-l=io.containers.autoupdate=registry"
|
||
|
|
];
|
||
|
|
hostIP = "10.88.0.1";
|
||
|
|
};
|
||
|
|
|
||
|
|
zabbix = {
|
||
|
|
domain = "zbx.mc-fucker.cool";
|
||
|
|
db = "zabbix";
|
||
|
|
port = "8999";
|
||
|
|
};
|
||
|
|
}
|
||
|
|
# vim: set et ts=2 sw=2 ai:
|