summary refs log tree commit diff stats
path: root/user/settings/music.nix
blob: 4394075522d19aaca5bd6a6204753e35b96cf960 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  config,
  pkgs,
  ...
}: {
  home.packages = with pkgs; [
    sonixd
    (tauon.override {withDiscordRPC = true;})
  ];

  xdg.desktopEntries.sonixd = {
    name = "sonixd";
    exec = "sonixd";
    comment = "Sonixd Music Player";
    categories = ["Audio" "AudioVideo"];
    genericName = "Music Player";
  };
}