19 lines
391 B
Nix
19 lines
391 B
Nix
{ lib, pkgs, config, ... }: {
|
|
deployment = {
|
|
targetHost = "192.168.178.110";
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
tags = [ "cube" ];
|
|
};
|
|
networking.hostName = "zammad";
|
|
networking.interfaces.wgbr.ipv4.addresses = [
|
|
{
|
|
address = "10.8.1.3";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
imports = [
|
|
../../container_config.nix
|
|
../../services/zammad.nix
|
|
];
|
|
}
|