about summary refs log tree commit diff stats
path: root/hm/soispha/conf/mpv/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soispha/conf/mpv/default.nix')
-rw-r--r--hm/soispha/conf/mpv/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/hm/soispha/conf/mpv/default.nix b/hm/soispha/conf/mpv/default.nix
index 1e10f2ef..6b252a38 100644
--- a/hm/soispha/conf/mpv/default.nix
+++ b/hm/soispha/conf/mpv/default.nix
@@ -1,10 +1,10 @@
-{
-  config,
-  pkgs,
-  ...
-}: {
+{...}: {
   programs.mpv = {
     enable = true;
-    # TODO: add config
+    bindings = {
+      q = "quit 0";
+      "Ctrl+c" = "quit 1";
+      "Shift+q" = "quit-watch-later 1";
+    };
   };
 }