14 lines
237 B
Nix
14 lines
237 B
Nix
{pkgs, ...}: {
|
|
home-manager.users.toast = {
|
|
programs.mpv = {
|
|
enable = true;
|
|
scripts = with pkgs.mpvScripts; [
|
|
mpris
|
|
];
|
|
config = {
|
|
hwdec = "auto";
|
|
cache = true;
|
|
};
|
|
};
|
|
};
|
|
}
|