about summary refs log tree commit diff stats
path: root/modules/by-name/mp/mpv/module.nix
blob: 7c8435d5c8e684c7f5b64457b348e94b5c31456a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# nixos-config - My current NixOS configuration
#
# Copyright (C) 2025 Benedikt Peetz <benedikt.peetz@b-peetz.de>
# SPDX-License-Identifier: GPL-3.0-or-later
#
# This file is part of my nixos-config.
#
# You should have received a copy of the License along with this program.
# If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
{
  config,
  lib,
  pkgs,
  ...
}: let
  cfg = config.soispha.programs.mpv;
in {
  options.soispha.programs.mpv = {
    enable = lib.mkEnableOption "mpv";
  };

  config.home-manager.users.soispha = lib.mkIf cfg.enable {
    programs.mpv = {
      enable = true;

      bindings = {
        q = "quit 0";
        "Ctrl+c" = "quit 1";
        "Shift+q" = "quit-watch-later 1";
      };
      config = {
        osd-bar = true;

        border = false;
      };
      scriptOpts = {
        osc = {
          scalewindowed = 0.8;
          hidetimeout = 300;
        };
        thumbfast = {
          hwdec = true;
          network = false;
          spawn_first = false;
          max_height = 250;
          max_width = 250;
        };
      };
      scripts = with pkgs.mpvScripts; [
        thumbfast
      ];
    };
  };
}