2005
27d55ea981
more polybar capsules readme: added showcase for alacritty and other stuff added theme skin for element alacritty shades of purple theme user.js: tryed to limit firefox for 165hz but still runs at 60fps added gimp added nvim config, soon i'll be switching to it
32 lines
644 B
Nix
Executable file
32 lines
644 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";
|
|
};
|
|
};
|
|
};
|
|
}
|
|
|