diff options
Diffstat (limited to 'host/Rory-nginx/services/containers/draupnir-cme/container.nix')
-rwxr-xr-x | host/Rory-nginx/services/containers/draupnir-cme/container.nix | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/host/Rory-nginx/services/containers/draupnir-cme/container.nix b/host/Rory-nginx/services/containers/draupnir-cme/container.nix new file mode 100755 index 0000000..b88a963 --- /dev/null +++ b/host/Rory-nginx/services/containers/draupnir-cme/container.nix @@ -0,0 +1,26 @@ +{ + pkgs, + lib, + conduit, + ... +}: + +{ + privateNetwork = true; + autoStart = true; + specialArgs = { + }; + config = + { + lib, + pkgs, + ... + }: + { + imports = [ ./root.nix ]; + }; + hostAddress = "192.168.100.16"; + localAddress = "192.168.100.17"; + hostAddress6 = "fc00::3"; + localAddress6 = "fc00::4"; +} |