1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 10:11:08 +01:00

feat(home-assistant): run on home.kmein.r

This commit is contained in:
2022-03-13 17:24:59 +01:00
parent 2565bfbc27
commit 9c68ff20bc
2 changed files with 13 additions and 5 deletions

6
flake.lock generated
View File

@@ -158,11 +158,11 @@
"retiolum": {
"flake": false,
"locked": {
"lastModified": 1646955706,
"narHash": "sha256-2wtMIXrozeO7qigFlRHp/53aSZMwcErH5zi14iwZV00=",
"lastModified": 1647188627,
"narHash": "sha256-xot7F7bKWnJAhzSXwiDopas1b66/9WUIabRJWreYkSQ=",
"owner": "krebs",
"repo": "retiolum",
"rev": "e488402be7f60a478c95a4bad6d6e2c67f2b55f9",
"rev": "5858b524a77cff53f1fbe21e0af3189e52a9654d",
"type": "github"
},
"original": {

View File

@@ -1,5 +1,13 @@
{
networking.firewall.allowedTCPPorts = [8123];
let
port = 8123;
in {
networking.firewall.allowedTCPPorts = [port];
services.nginx.virtualHosts."home.kmein.r" = {
locations."/" = {
proxyPass = "http://127.0.0.1:${toString port}";
};
};
virtualisation.oci-containers = {
backend = "podman";