🧹 Mpv loop config, moved fish aliases to proper files

This commit is contained in:
2025-02-02 15:06:34 +01:00
parent bd2f725029
commit 76ebdad3ce
9 changed files with 113 additions and 115 deletions

View File

@ -8,13 +8,22 @@
flavor = theme.flavor;
};
programs.mpv = {
enable = true;
config = {
hwdec = "auto-safe";
vo = "gpu";
profile = "gpu-hq";
gpu-context = "wayland";
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";
};
};
};
};
}