34 lines
439 B
Nix
34 lines
439 B
Nix
|
{
|
||
|
pkgs,
|
||
|
config,
|
||
|
...
|
||
|
}:
|
||
|
# media - control and enjoy audio/video
|
||
|
{
|
||
|
# imports = [
|
||
|
# ];
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
# audio control
|
||
|
pavucontrol
|
||
|
playerctl
|
||
|
pulsemixer
|
||
|
# images
|
||
|
imv
|
||
|
];
|
||
|
|
||
|
programs = {
|
||
|
mpv = {
|
||
|
enable = true;
|
||
|
defaultProfiles = ["gpu-hq"];
|
||
|
scripts = [pkgs.mpvScripts.mpris];
|
||
|
};
|
||
|
|
||
|
obs-studio.enable = true;
|
||
|
};
|
||
|
|
||
|
services = {
|
||
|
playerctld.enable = true;
|
||
|
};
|
||
|
}
|