valheim: added hutasuhut server
This commit is contained in:
parent
f26fe1533b
commit
da88afbb51
|
@ -1,15 +1,17 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, ... }:
|
||||||
let
|
let
|
||||||
name = "valheim";
|
name = "valheim";
|
||||||
podman = config.profile.podman;
|
podman = config.profile.podman;
|
||||||
inherit (lib) mkIf strings;
|
inherit (lib) mkIf strings;
|
||||||
ip = "10.88.200.10";
|
ip = "10.88.200.10";
|
||||||
|
ip-hutasuhut = "10.88.200.11";
|
||||||
image = "docker.io/lloesche/valheim-server";
|
image = "docker.io/lloesche/valheim-server";
|
||||||
domain = "${name}.tigor.web.id";
|
domain = "${name}.tigor.web.id";
|
||||||
user = config.profile.user;
|
user = config.profile.user;
|
||||||
uid = toString user.uid;
|
uid = toString user.uid;
|
||||||
gid = toString user.gid;
|
gid = toString user.gid;
|
||||||
base_dir = "/var/lib/${name}";
|
base_dir = "/var/lib/${name}";
|
||||||
|
base_dir_hutasuhut = "/var/lib/${name}_hutasuhut";
|
||||||
in
|
in
|
||||||
lib.mkMerge [
|
lib.mkMerge [
|
||||||
(mkIf (podman.${name}.enable) {
|
(mkIf (podman.${name}.enable) {
|
||||||
|
@ -39,12 +41,24 @@ lib.mkMerge [
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
systemd.tmpfiles.settings."podman-${name}".${base_dir}.d = {
|
systemd.tmpfiles.settings."podman-${name}" = {
|
||||||
group = config.profile.user.name;
|
${base_dir}.d = {
|
||||||
mode = "0755";
|
group = config.profile.user.name;
|
||||||
user = config.profile.user.name;
|
mode = "0755";
|
||||||
|
user = config.profile.user.name;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
systemd.tmpfiles.settings."podman-${name}-hutasuhut" = {
|
||||||
|
${base_dir_hutasuhut}.d = {
|
||||||
|
group = config.profile.user.name;
|
||||||
|
mode = "0755";
|
||||||
|
user = config.profile.user.name;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
virtualisation.oci-containers.containers.${name} =
|
virtualisation.oci-containers.containers.${name} =
|
||||||
{
|
{
|
||||||
inherit image;
|
inherit image;
|
||||||
|
@ -52,7 +66,6 @@ lib.mkMerge [
|
||||||
autoStart = true;
|
autoStart = true;
|
||||||
ports = [
|
ports = [
|
||||||
"2456:2456/udp"
|
"2456:2456/udp"
|
||||||
"2457:2457/udp"
|
|
||||||
];
|
];
|
||||||
volumes = [
|
volumes = [
|
||||||
"${base_dir}/config:/config"
|
"${base_dir}/config:/config"
|
||||||
|
@ -78,6 +91,38 @@ lib.mkMerge [
|
||||||
"io.containers.autoupdate" = "registry";
|
"io.containers.autoupdate" = "registry";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
virtualisation.oci-containers.containers."${name}-hutasuhut" =
|
||||||
|
{
|
||||||
|
inherit image;
|
||||||
|
hostname = name;
|
||||||
|
autoStart = true;
|
||||||
|
ports = [
|
||||||
|
"2457:2457/udp"
|
||||||
|
];
|
||||||
|
volumes = [
|
||||||
|
"${base_dir_hutasuhut}/config:/config"
|
||||||
|
"${base_dir_hutasuhut}/data:/opt/valheim"
|
||||||
|
];
|
||||||
|
environment = {
|
||||||
|
TZ = "Asia/Jakarta";
|
||||||
|
SERVER_NAME = "Hutasuhut";
|
||||||
|
WORLD_NAME = "Hutasuhut";
|
||||||
|
STATUS_HTTP = "true";
|
||||||
|
PUID = uid;
|
||||||
|
PGID = gid;
|
||||||
|
};
|
||||||
|
extraOptions = [
|
||||||
|
"--network=podman"
|
||||||
|
"--ip=${ip-hutasuhut}"
|
||||||
|
"--cap-add=sys_nice"
|
||||||
|
];
|
||||||
|
environmentFiles = [
|
||||||
|
config.sops.templates."valheim-env".path
|
||||||
|
];
|
||||||
|
labels = {
|
||||||
|
"io.containers.autoupdate" = "registry";
|
||||||
|
};
|
||||||
|
};
|
||||||
})
|
})
|
||||||
{
|
{
|
||||||
profile.services.ntfy-sh.client.settings.subscribe = [
|
profile.services.ntfy-sh.client.settings.subscribe = [
|
||||||
|
@ -86,4 +131,11 @@ lib.mkMerge [
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
{
|
||||||
|
profile.services.ntfy-sh.client.settings.subscribe = [
|
||||||
|
{
|
||||||
|
topic = "valheim-hutasuhut";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
]
|
]
|
||||||
|
|
Loading…
Reference in a new issue