This commit is contained in:
Charlotte 🦝 Delenk 2022-01-18 21:11:14 +01:00
parent 5d24ee0a33
commit 213421fbbe
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5
2 changed files with 8 additions and 0 deletions

View file

@ -10,5 +10,6 @@ desktop: { pkgs, ... }: {
../programs/waybar.nix
../programs/ims.nix
../programs/syncthing.nix
../programs/mpd.nix
] else []);
}

7
config/programs/mpd.nix Normal file
View file

@ -0,0 +1,7 @@
{ ... }: {
services.mpd = {
enable = true;
musicDirectory = "$HOME/music";
};
programs.ncmpcpp.enable = true;
}