From 0631741def9d5911dfe70f504b05c3eef2f5fd26 Mon Sep 17 00:00:00 2001 From: makefu Date: Sun, 10 Sep 2023 20:47:04 +0200 Subject: [PATCH] home/streams: init --- 2configs/home/streams.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 2configs/home/streams.nix diff --git a/2configs/home/streams.nix b/2configs/home/streams.nix new file mode 100644 index 0000000..4042605 --- /dev/null +++ b/2configs/home/streams.nix @@ -0,0 +1,11 @@ +{ pkgs, config, lib, ...}: +let + port = "2348"; +in +{ + + services.nginx.virtualHosts."streams.lan" = { + locations."/teddy.mp3".return ="307 https://irmedia.streamabc.net/irm-rtliveplus-mp3-192-4919509"; + }; + +}