flake cleanup and wg setup persistence

This commit is contained in:
Clara Dautermann 2025-04-06 07:50:37 +02:00
parent a1e9e81ae9
commit 0ac3bbfbe2
7 changed files with 80 additions and 32 deletions

View 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
];
}