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