feat: add music and zsh and zathura improvements

This commit is contained in:
2026-01-20 12:40:15 -05:00
parent 0d21f85c84
commit 2adf1b010b
6 changed files with 32 additions and 12 deletions

View File

@@ -0,0 +1,27 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
mpc
ncmpcpp
];
services.mpd = {
enable = true;
musicDirectory = "/home/max/media/music";
user = "max";
extraConfig = ''
audio_output {
type "pipewire"
name "Pipewire Ouput"
}
'';
};
systemd = {
services = {
mpd.environment = {
XDG_RUNTIME_DIR = "/run/user/1001";
};
};
};
}