nixos-config/configs/nixos/ni/modules/setups/music.nix

44 lines
1012 B
Nix
Raw Normal View History

2023-12-13 02:42:43 +00:00
{ config, lib, pkgs, ... }:
let
hostCfg = config.hosts.ni;
cfg = hostCfg.setups.music;
gonicPort = 4747;
uxplayPort = gonicPort + 1;
2023-12-13 02:42:43 +00:00
in
{
2023-12-15 05:27:12 +00:00
options.hosts.ni.setups.music.enable =
lib.mkEnableOption "music streaming and organizing setup";
2023-12-13 02:42:43 +00:00
config = lib.mkIf cfg.enable {
# My portable music streaming server.
services.gonic = {
enable = true;
settings = rec {
listen-addr = "localhost:${builtins.toString gonicPort}";
2023-12-13 02:42:43 +00:00
cache-path = "/var/cache/gonic";
music-path =
[
"/srv/Music"
];
podcast-path = "${cache-path}/podcasts";
playlists-path = "${cache-path}/playlists";
2023-12-13 02:42:43 +00:00
jukebox-enabled = true;
scan-interval = 1;
scan-at-start-enabled = true;
};
};
# My AirPlay mirroring server.
services.uxplay = {
enable = true;
extraArgs = [ "-p" (builtins.toString uxplayPort) ];
};
networking.firewall.allowedTCPPorts = [ gonicPort uxplayPort ];
2023-12-13 02:42:43 +00:00
};
}