diff options
| author | Preston Pan <ret2pop@nullring.xyz> | 2026-03-01 23:51:02 -0800 |
|---|---|---|
| committer | Preston Pan <ret2pop@nullring.xyz> | 2026-03-01 23:51:02 -0800 |
| commit | a05e0614c1bb75f77717a943dc4ac75a0cca4652 (patch) | |
| tree | d52ddee9db6d6eabbafc73f04aa83f6bbcd7f0c5 /nix/modules/icecast.nix | |
| parent | 75439737613d86975856c4bff0a1257f58fd1b1f (diff) | |
add everything; add CI
Diffstat (limited to 'nix/modules/icecast.nix')
| -rw-r--r-- | nix/modules/icecast.nix | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/nix/modules/icecast.nix b/nix/modules/icecast.nix index 0cef018..7d3d88d 100644 --- a/nix/modules/icecast.nix +++ b/nix/modules/icecast.nix @@ -1,21 +1,21 @@ { lib, config, ... }: { services.icecast = { - enable = lib.mkDefault config.monorepo.profiles.server.enable; + enable = lib.mkDefault false; listen.address = "0.0.0.0"; extraConfig = '' -<mount type="default"> - <public>0</public> - <intro>/stream.m3u</intro> - <max-listener-duration>3600</max-listener-duration> - <authentication type="url"> - <option name="mount_add" value="http://auth.example.org/stream_start.php"/> - </authentication> - <http-headers> - <header name="foo" value="bar" /> - </http-headers> -</mount> -''; + <mount type="default"> + <public>0</public> + <intro>/stream.m3u</intro> + <max-listener-duration>3600</max-listener-duration> + <authentication type="url"> + <option name="mount_add" value="http://auth.example.org/stream_start.php"/> + </authentication> + <http-headers> + <header name="foo" value="bar" /> + </http-headers> + </mount> + ''; }; admin.password = "changeme"; } |
