all repos — nixfiles @ 8fed3b5ead93fdaaf713b08270b7a9b096a5114b

System and user configuration, managed by nix and home-manager

music: install sonixd and add desktop entry

Alan Pearce
commit

8fed3b5ead93fdaaf713b08270b7a9b096a5114b

parent

4f526083bcd48c619c7a9977fc7cb9c3c184c85b

1 file changed, 5 insertions(+), 9 deletions(-)

jump to
M user/settings/music.nixuser/settings/music.nix
@@ -5,19 +5,15 @@ home.packages = with pkgs; [
beets cmus playerctl + sonixd (tauon.override { withDiscordRPC = true; }) ]; - xdg.desktopEntries.cmus = { - name = "cmus"; - exec = "cmus"; - comment = "C* Music Player"; + xdg.desktopEntries.sonixd = { + name = "sonixd"; + exec = "sonixd"; + comment = "Sonixd Music Player"; categories = [ "Audio" "AudioVideo" ]; genericName = "Music Player"; - terminal = true; - - settings = { - Path = "/mnt/data/Home/Music/Beets"; - }; }; }