1
0
mirror of https://github.com/kmein/niveum synced 2026-03-21 04:11:07 +01:00

2 Commits

Author SHA1 Message Date
f40ce68ced XCompose: add aspirates/fricatives 2024-09-08 19:14:47 +02:00
bfa2b1e9b1 makanek: host online scrabble 2024-09-08 19:14:30 +02:00
3 changed files with 24 additions and 0 deletions

View File

@@ -13,6 +13,9 @@ include "%L"
<Multi_key> <E> <E> : "ɛ" U025B
<Multi_key> <O> <O> : "ɔ" U0254
<Multi_key> <s> <h> : "ʃ" U0283
<Multi_key> <g> <h> : "ɣ" U0283
<Multi_key> <b> <h> : "β" U0283
<Multi_key> <p> <h> : "ɸ" U0283
<Multi_key> <z> <h> : "ʒ" U0292
<Multi_key> <e> <i> : "ɪ" U026A
<Multi_key> <e> <u> : "ʊ" U028A

View File

@@ -16,6 +16,7 @@ in {
./names.nix
./nextcloud.nix
./radio-news.nix
./scrabble.nix
# ./onlyoffice.nix
./retiolum-map.nix
./tarot.nix

View File

@@ -0,0 +1,20 @@
let
port = 9090;
in
{
virtualisation.oci-containers = {
backend = "podman";
containers.xanado = {
volumes = [ ];
ports = [ "${toString port}:9093" ];
environment.TZ = "Europe/Berlin";
image = "ghcr.io/cdot/xanado:v3.1.6";
};
};
services.nginx.virtualHosts."scrabble.kmein.de" = {
enableACME = true;
forceSSL = true;
locations."/".proxyPass = "http://localhost:${toString port}";
};
}