From cf416b91bdd0e2ee3c3cdb94457a1ee5329665bb Mon Sep 17 00:00:00 2001 From: Chris Moultrie <821688+tebriel@users.noreply.github.com> Date: Wed, 20 May 2026 13:04:20 -0400 Subject: [PATCH] nixos/navidrome: Default to plugins enabled Matches the default configuration in Navidrome itself --- nixos/modules/services/audio/navidrome.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/nixos/modules/services/audio/navidrome.nix b/nixos/modules/services/audio/navidrome.nix index 8920c2d429ff..a57fa2e159c6 100644 --- a/nixos/modules/services/audio/navidrome.nix +++ b/nixos/modules/services/audio/navidrome.nix @@ -90,12 +90,9 @@ in Plugins = { Enabled = mkOption { - default = (builtins.length cfg.plugins) != 0; - defaultText = literalExpression "builtins.length \"\${config.services.navidrome.plugins != 0}\""; + default = true; description = '' Enable plugin support in navidrome. - - This is automatically enabled if {option}`services.navidrome.plugins` is used. ''; }; Folder = mkOption {