summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--common/unfree.nix4
-rw-r--r--usecases/desktop/graphical/mpv.nix10
2 files changed, 7 insertions, 7 deletions
diff --git a/common/unfree.nix b/common/unfree.nix
index efab0b3..cec1c03 100644
--- a/common/unfree.nix
+++ b/common/unfree.nix
@@ -13,5 +13,9 @@ inputs:
13 "steam-original" 13 "steam-original"
14 "steam-run" 14 "steam-run"
15 "steam-runtime" 15 "steam-runtime"
16
17 # actually MPL
18 # TODO: remove once this is fixed
19 "mpv-thumbfast"
16 ]; 20 ];
17} 21}
diff --git a/usecases/desktop/graphical/mpv.nix b/usecases/desktop/graphical/mpv.nix
index 219c86c..a42c78e 100644
--- a/usecases/desktop/graphical/mpv.nix
+++ b/usecases/desktop/graphical/mpv.nix
@@ -1,15 +1,11 @@
1inputs: 1inputs: {pkgs, ...}: {
2
3{ pkgs, ... }:
4
5{
6 home-manager.users.minijackson.programs.mpv = { 2 home-manager.users.minijackson.programs.mpv = {
7 enable = true; 3 enable = true;
8 config = { 4 config = {
9 hwdec = "auto"; 5 hwdec = "auto";
10 profile = "gpu-hq"; 6 profile = "gpu-hq";
11 }; 7 };
12 defaultProfiles = [ "gpu-hq" ]; 8 defaultProfiles = ["gpu-hq"];
13 scripts = with pkgs.mpvScripts; [ mpris sponsorblock ]; 9 scripts = with pkgs.mpvScripts; [mpris sponsorblock thumbfast uosc];
14 }; 10 };
15} 11}