flake cleanup and wg setup persistence
This commit is contained in:
parent
a1e9e81ae9
commit
0ac3bbfbe2
7 changed files with 80 additions and 32 deletions
17
configs/containers/zammad_container.nix
Normal file
17
configs/containers/zammad_container.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{ lib, pkgs, config, ... }: {
|
||||
deployment = {
|
||||
targetHost = "192.168.178.50";
|
||||
targetPort = 22;
|
||||
targetUser = "root";
|
||||
};
|
||||
networking.hostName = "zammad";
|
||||
networking.interfaces.wgbr.ipv4.addresses = [
|
||||
{
|
||||
address = "10.8.1.3";
|
||||
prefixLength = 24;
|
||||
}
|
||||
];
|
||||
imports = [
|
||||
../container_config.nix
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue