From 00c9e35779cbb298d6395a6e2c2534007a92976f Mon Sep 17 00:00:00 2001 From: Preston Pan Date: Fri, 21 Mar 2025 04:52:46 -0700 Subject: add a ton of VPS upgrades; update website; live life --- nix/modules/icecast.nix | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 nix/modules/icecast.nix (limited to 'nix/modules/icecast.nix') diff --git a/nix/modules/icecast.nix b/nix/modules/icecast.nix new file mode 100644 index 0000000..0cef018 --- /dev/null +++ b/nix/modules/icecast.nix @@ -0,0 +1,21 @@ +{ lib, config, ... }: +{ + services.icecast = { + enable = lib.mkDefault config.monorepo.profiles.server.enable; + listen.address = "0.0.0.0"; + extraConfig = '' + + 0 + /stream.m3u + 3600 + + + +
+ + +''; + }; + admin.password = "changeme"; +} -- cgit v1.3