removed music.nix

as it turns out, you cant use rmpc with mopidy-mpd becasue mopidy-mpd is
mpd version 19, where rmpc really needs version 23 or above

not very helpful, sadly mopidy is required for my use case because of
jellyfin, will stick to the jellyfin web client for now i suppose
This commit is contained in:
Gabriella Bere 2025-05-24 10:33:40 +01:00
parent e2774adca2
commit 42ae9eabe6

View file

@ -1,39 +0,0 @@
{ pkgs, ... }: {
services.mopidy = {
enable = true;
extensionPackages = with pkgs; [
mopidy-jellyfin
mopidy-mpd
];
settings = {
jellyfin = {
hostname = "bigpi.home.arpa";
user_id = "blue";
token = "auth_token_goes_here";
};
mpd.enabled = true;
};
};
programs.rmpc = {
enable = true;
config =
''
(
address: "127.0.0.1:6600",
password: None,
theme: None,
cache_dir: None,
on_song_change: None,
volume_step: 5,
max_fps: 30,
scrolloff: 0,
wrap_navigation: false,
enable_mouse: true,
enable_config_hot_reload: true,
status_update_interval_ms: 1000,
select_current_song_on_change: true,
browser_song_sort: [Disc, Track, Artist, Title],
)
'';
};
}