all repos — nixfiles @ 557058a3575995c0d0d7b7072d0f769d7621c049

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
{ config, pkgs, ... }:

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

  xdg.desktopEntries.cmus = {
    name = "cmus";
    exec = "cmus";
    comment = "C* Music Player";
		categories = [ "Audio" "AudioVideo" ];
    genericName = "Music Player";
    terminal = true;

    settings = {
		  Path = "/mnt/data/Home/Music/Beets";
    };
  };
}