21 lines
394 B
Nix
21 lines
394 B
Nix
{ lib, pkgs, config, ... }: {
|
|
|
|
deployment = {
|
|
targetHost = "192.168.178.37";
|
|
targetPort = 22;
|
|
targetUser = "root";
|
|
tags = [ "cube" ];
|
|
};
|
|
networking.hostName = "forgejo";
|
|
networking.interfaces.wgbr.ipv4.addresses = [
|
|
{
|
|
address = "10.8.1.4";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
imports = [
|
|
../../container_config.nix
|
|
../../services/forgejo.nix
|
|
];
|
|
}
|
|
|