diff options
author | Rory& <root@rory.gay> | 2024-07-23 12:01:27 +0200 |
---|---|---|
committer | Rory& <root@rory.gay> | 2024-07-23 12:01:27 +0200 |
commit | 630756d2e71f28370b656d21f163df3009bd477d (patch) | |
tree | ad651830c49b3deeb34cfe2351bc8e9476a40805 /host/Rory-nginx/services/containers/draupnir-cme/container.nix | |
parent | Update desktop connfig (diff) | |
download | Rory-Open-Architecture-630756d2e71f28370b656d21f163df3009bd477d.tar.xz |
Add draupnir-cme
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"; +} |