From 7649aed0c9c679277af3ed8cb966fe74cf3f9079 Mon Sep 17 00:00:00 2001 From: BuyMyMojo Date: Mon, 24 Mar 2025 23:46:24 +1100 Subject: [PATCH 1/2] Update mpv config --- mpv/mpv.conf | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/mpv/mpv.conf b/mpv/mpv.conf index d46c922..30c5ee7 100755 --- a/mpv/mpv.conf +++ b/mpv/mpv.conf @@ -1,4 +1,3 @@ -profile=gpu-hq ######################################### # Misc settings, not related to quality # @@ -51,6 +50,9 @@ blend-subtitles hls-bitrate=max hwdec=auto-safe +vo=gpu-next +profile=gpu-hq +gpu-context=wayland screenshot-directory="/home/buymymojo/Pictures/MPV/" @@ -61,7 +63,6 @@ cache=yes cache-secs=300 # how many seconds of audio/video to prefetch if the cache is active # vo=dmabuf-wayland -vo=gpu-next # gpu-api=vulkan # gpu-context=waylandvk # vulkan-async-compute From f1d9504b665c604ada302ad003993f616547ed21 Mon Sep 17 00:00:00 2001 From: BuyMyMojo Date: Mon, 24 Mar 2025 23:46:43 +1100 Subject: [PATCH 2/2] Add ~/bin to path --- home-manager/home.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/home-manager/home.nix b/home-manager/home.nix index f1cc283..b41d9a1 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -197,6 +197,7 @@ in }; }; + programs.bash.enable = true; programs.fish.enable = true; services.ssh-agent.enable = true; @@ -223,6 +224,10 @@ in NIXPKGS_ALLOW_UNFREE = "1"; }; +home.sessionPath = [ + "/home/buymymojo/bin/" + ]; + # Let Home Manager install and manage itself. programs.home-manager.enable = true; }