Compare commits

..

No commits in common. "81575957479c2d4bcf4a0b46481f03180a387734" and "bee57a1e09a53132a4e0178768cb28a8fdc067a4" have entirely different histories.

2 changed files with 0 additions and 6 deletions

View file

@ -114,7 +114,6 @@ in
navidrome = { navidrome = {
enable = true; enable = true;
musicFolder = "${config.services.nextcloud.home}/data/alarsyo/files/Musique/Songs";
}; };
nextcloud = { nextcloud = {

View file

@ -8,10 +8,6 @@ let
in { in {
options.my.services.navidrome = { options.my.services.navidrome = {
enable = mkEnableOption "Navidrome"; enable = mkEnableOption "Navidrome";
musicFolder = mkOption {
type = types.str;
default = "./music";
};
}; };
config = lib.mkIf cfg.enable { config = lib.mkIf cfg.enable {
@ -21,7 +17,6 @@ in {
Address = "127.0.0.1"; Address = "127.0.0.1";
Port = 4533; Port = 4533;
LastFM.Enabled = false; LastFM.Enabled = false;
MusicFolder = cfg.musicFolder;
}; };
}; };