Fix variable
This commit is contained in:
parent
74e0b67828
commit
87aff6707b
2 changed files with 10 additions and 3 deletions
|
@ -79,6 +79,7 @@
|
|||
inherit inputs;
|
||||
inherit username;
|
||||
inherit proxy_host;
|
||||
inherit pgsql_host;
|
||||
inherit system;
|
||||
};
|
||||
};
|
||||
|
@ -115,6 +116,7 @@
|
|||
inherit inputs;
|
||||
inherit username;
|
||||
inherit proxy_host;
|
||||
inherit pgsql_host;
|
||||
inherit system;
|
||||
};
|
||||
};
|
||||
|
@ -131,7 +133,7 @@
|
|||
services.vm = {
|
||||
enable = true;
|
||||
hostname = "nginx";
|
||||
vm_ip = "192.168.1.40";
|
||||
vm_ip = proxy_host;
|
||||
macAddr = "02:00:00:00:00:40";
|
||||
};
|
||||
}
|
||||
|
@ -186,7 +188,8 @@
|
|||
{
|
||||
services.vm_grafana = {
|
||||
enable = true;
|
||||
proxy_ip = "192.168.1.40";
|
||||
proxy_ip = proxy_host;
|
||||
pgsql_ip = pgsql_host;
|
||||
};
|
||||
services.vm = {
|
||||
enable = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue