all repos — nixfiles @ c5266433b0890916ce5e16bb49ca4fdaaf33ee82

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
17
18
19
20
21
22
23
{ config, pkgs, ... }:

{
  home.packages = with pkgs; [
    cmus
    playerctl
  ];

  xdg.dataFile."applications/cmus".source = pkgs.makeDesktopItem {
    name = "cmus";
    exec = "cmus";
    comment = "C* Music Player";
    desktopName = "cmus";
    categories = "Application;Audio;AudioVideo;";
    genericName = "Music Player";
    terminal = "true";

    # FIXME
    extraEntries = ''
      Path = /data/Home/Music/Beets
    '';
  };
}