containers: make all variables explicit
Instead of merging the argument set just make all arguments explicit.
This commit is contained in:
parent
fc94819a23
commit
0836c22881
5 changed files with 31 additions and 23 deletions
|
@ -101,7 +101,7 @@ in {
|
|||
mailserver = import ../../containers/mailserver.nix {
|
||||
hostAddress = "192.168.100.10";
|
||||
localAddress = "192.168.100.11";
|
||||
} {
|
||||
|
||||
imapsPort = 993;
|
||||
sievePort = 4190;
|
||||
};
|
||||
|
@ -109,14 +109,14 @@ in {
|
|||
webserver = import ../../containers/webserver.nix {
|
||||
hostAddress = "192.168.100.12";
|
||||
localAddress = "192.168.100.13";
|
||||
} {
|
||||
|
||||
httpsPort = 443;
|
||||
};
|
||||
|
||||
syncthing = import ../../containers/syncthing.nix {
|
||||
hostAddress = "192.168.100.14";
|
||||
localAddress = "192.168.100.15";
|
||||
} {
|
||||
|
||||
syncthingPort = 22000;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue