11 lines
187 B
Nix
11 lines
187 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
tageditor
|
|
];
|
|
services.mpd = {
|
|
enable = true;
|
|
user = "thorn";
|
|
musicDirectory = "/home/thorn/music";
|
|
};
|
|
}
|