Iwakura/modules/ncmpcpp/default.nix

11 lines
187 B
Nix
Raw Permalink Normal View History

2021-08-23 06:42:53 -04:00
{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
tageditor
];
services.mpd = {
enable = true;
user = "thorn";
musicDirectory = "/home/thorn/music";
};
}