aboutsummaryrefslogtreecommitdiffstats
path: root/hm/soispha/conf
diff options
context:
space:
mode:
Diffstat (limited to 'hm/soispha/conf')
-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";
+ };
};
}