14 lines
246 B
Nix
14 lines
246 B
Nix
{ lib, pkgs, config, ... }:
|
|
{
|
|
deployment = {
|
|
targetHost = "10.0.0.3";
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
tags = [ "netcup_pve" ];
|
|
};
|
|
networking.hostName = "wireguard";
|
|
|
|
imports = [
|
|
../../container_config.nix
|
|
];
|
|
}
|