fixed wireguard

This commit is contained in:
CDaut 2025-11-23 17:06:38 +01:00
parent d711859f23
commit 5c7aea6203
Signed by: clara
GPG key ID: 223391B52FAD4463
6 changed files with 78 additions and 64 deletions

View file

@ -0,0 +1,13 @@
{ lib, pkgs, config, ... }: {
deployment = {
targetHost = "10.10.0.4";
targetPort = 22;
targetUser = "root";
tags = [ "cube" ];
};
networking.hostName = "wireguard";
imports = [
../../container_config.nix
../../services/wireguard_cube.nix
];
}