dotfiles/etc/apps/music.nix
2005 a9f0e0bd12 💫 some look changes
added rofi theme but it kinda looks scuffed. (last update broke the theme)
added waydroid
few more applications
enabled ollama once again
vscode: added typescript prettier linter
2024-07-13 17:48:39 +02:00

32 lines
647 B
Nix
Executable file

{ pkgs, config, ... }: {
environment.systemPackages = with pkgs; [
cmus
playerctl
jamesdsp
yt-dlp
#picard # audio metadata
#ncmpc
#mpd
];
home-manager.users.grape = {
services.mpd-mpris = {
enable = false;
mpd = {
useLocal = true;
};
};
# running it via home manager, as by default it has no permission to access my audio drivers
services.mpd = {
enable = false;
musicDirectory = "/home/grape/Music";
playlistDirectory = "/home/grape/Music/playlists";
network = {
port = 6600;
listenAddress = "127.0.0.1";
};
};
};
}