Enable mpd on home system
This commit is contained in:
parent
42582ab90a
commit
d61cb3059f
2 changed files with 8 additions and 1 deletions
|
@ -15,6 +15,12 @@ in
|
||||||
network = {
|
network = {
|
||||||
startWhenNeeded = true;
|
startWhenNeeded = true;
|
||||||
};
|
};
|
||||||
|
extraConfig = ''
|
||||||
|
audio_output {
|
||||||
|
type "pipewire"
|
||||||
|
name "PipeWire Sound Server"
|
||||||
|
}
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
services.mpdris2 = {
|
services.mpdris2 = {
|
||||||
|
@ -22,6 +28,6 @@ in
|
||||||
notifications = true;
|
notifications = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
home.packages = with pkgs; [ mpc-cli ];
|
home.packages = with pkgs; [ mpc-cli (ncmpcpp.override { visualizerSupport = true; }) ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -55,6 +55,7 @@ in
|
||||||
};
|
};
|
||||||
gpg.enable = true;
|
gpg.enable = true;
|
||||||
hyprland.enable = true;
|
hyprland.enable = true;
|
||||||
|
mpd.enable = true;
|
||||||
neovim.enable = true;
|
neovim.enable = true;
|
||||||
obs-studio.enable = true;
|
obs-studio.enable = true;
|
||||||
rclone = {
|
rclone = {
|
||||||
|
|
Loading…
Reference in a new issue