1{ 2 config, 3 lib, 4 ... 5}: let 6 cfg = config.settings.programs.categories.music; 7in { 8 config = lib.mkIf cfg.enable { 9 services.mpdscribble = { 10 enable = true; 11 endpoints."last.fm" = { 12 passwordFile = config.age.secrets.lastfm.path; 13 username = "snudoo"; 14 }; 15 }; 16 }; 17}