2025-01-11 11:53:20 +01:00
|
|
|
{
|
2025-01-12 16:17:44 +01:00
|
|
|
catppuccin.mpv =
|
|
|
|
let
|
|
|
|
theme = import ../theme.nix;
|
|
|
|
in
|
|
|
|
{
|
|
|
|
enable = true;
|
|
|
|
flavor = theme.flavor;
|
|
|
|
};
|
|
|
|
|
2025-02-02 15:06:34 +01:00
|
|
|
programs = {
|
|
|
|
fish.shellAliases.mpvl = "mpv --profile=loop";
|
|
|
|
mpv = {
|
|
|
|
enable = true;
|
|
|
|
config = {
|
|
|
|
hwdec = "auto-safe";
|
|
|
|
vo = "gpu";
|
|
|
|
profile = "gpu-hq";
|
|
|
|
gpu-context = "wayland";
|
|
|
|
};
|
|
|
|
profiles = {
|
|
|
|
loop = {
|
|
|
|
loop-playlist = "inf";
|
|
|
|
loop-file = "inf";
|
|
|
|
};
|
|
|
|
};
|
2025-01-11 11:53:20 +01:00
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|