summaryrefslogtreecommitdiff
path: root/nixos/hosts/bin/components/music.nix
blob: 69ca60b4df6079658e4ba6b20c96a463aebaf4bc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{
  networking.firewall.allowedTCPPorts = [ 4533 ];
  
  services.navidrome = {
    enable = true;
    settings = {
      Address = "0.0.0.0";
      Port = 4533;
      MusicFolder = "/var/lib/navidrome/music";
    };
  };
}