Finally find a better name for these folders

This commit is contained in:
Jimbo 2024-09-23 23:42:18 -04:00
parent 84eac269d7
commit 2e70b49477
22 changed files with 41 additions and 41 deletions

18
home/utils/ncmpcpp.nix Normal file
View file

@ -0,0 +1,18 @@
{pkgs, ...}: {
# Enable NCMPCPP
programs.ncmpcpp = {
enable = true;
settings = {
browser_sort_mode = "name";
user_interface = "alternative";
};
};
# Enable Discord Music RPC
services.mpd-discord-rpc.enable = true;
# Allow terminal control of mpd
home.packages = with pkgs; [
mpc-cli
];
}