all repos — nixfiles @ 3886199646fbaf9ff735aa0367ca9ec30332d64d

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

user/settings/music.nix (view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ pkgs
, ...
}: {
  home.packages = with pkgs; [
    sonixd
    sublime-music
  ];

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