diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-03 19:34:53 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2025-02-03 19:34:53 +0100 |
commit | 84420aebbeb7f5e650c5f162c76aaf90343dd3f7 (patch) | |
tree | 6265a90e3077b9fd528eb097f153f16300743c9d /modules/home.legacy | |
parent | feat(modules/legacy/mail): Automatically set a git credential helper (diff) | |
download | nixos-config-84420aebbeb7f5e650c5f162c76aaf90343dd3f7.zip |
feat(modules/mpv): Migrate to `by-name` and add some scripts
Diffstat (limited to '')
-rw-r--r-- | modules/home.legacy/conf/default.nix | 1 | ||||
-rw-r--r-- | modules/home.legacy/conf/mpv/default.nix | 10 |
2 files changed, 0 insertions, 11 deletions
diff --git a/modules/home.legacy/conf/default.nix b/modules/home.legacy/conf/default.nix index 848bcccf..e1cab572 100644 --- a/modules/home.legacy/conf/default.nix +++ b/modules/home.legacy/conf/default.nix @@ -16,7 +16,6 @@ ./mail ./mako ./mbsync - ./mpv ./mumble ./neomutt ./nix-index diff --git a/modules/home.legacy/conf/mpv/default.nix b/modules/home.legacy/conf/mpv/default.nix deleted file mode 100644 index 6b252a38..00000000 --- a/modules/home.legacy/conf/mpv/default.nix +++ /dev/null @@ -1,10 +0,0 @@ -{...}: { - programs.mpv = { - enable = true; - bindings = { - q = "quit 0"; - "Ctrl+c" = "quit 1"; - "Shift+q" = "quit-watch-later 1"; - }; - }; -} |