my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: init navidrome

willow f1c9fe4a d2143692

+12
+1
modules/nixos/services/default.nix
··· 9 9 imports = [ 10 10 ./i18n.nix 11 11 ./mpdscribble.nix 12 + ./navidrome.nix 12 13 ./pipewire.nix 13 14 ./printing.nix 14 15 ./privacy.nix
+11
modules/nixos/services/navidrome.nix
··· 1 + {config, ...}: { 2 + services.navidrome = { 3 + enable = true; 4 + openFirewall = true; 5 + 6 + settings = { 7 + # TODO: use this value for beets 8 + MusicFolder = "${config.xdg.userDirs.music}/music"; 9 + }; 10 + }; 11 + }