diff options
Diffstat (limited to 'snowfall/modules/home/apps/mpv/default.nix')
| -rw-r--r-- | snowfall/modules/home/apps/mpv/default.nix | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/snowfall/modules/home/apps/mpv/default.nix b/snowfall/modules/home/apps/mpv/default.nix deleted file mode 100644 index e7a62db..0000000 --- a/snowfall/modules/home/apps/mpv/default.nix +++ /dev/null @@ -1,20 +0,0 @@ -{ options, config, lib, namespace, ... }: - -with lib; with lib.${namespace}; let - cfg = config.${namespace}.apps.mpv; -in { - options.${namespace}.apps.mpv = with types; { - enable = mkEnableOption "mpv"; - }; - - config = mkIf cfg.enable { - programs.mpv = { - enable = true; - - config = { - screenshot-format = "png"; - screenshot-template = "~/Pictures/Screenshots/mpv/%F/%P"; - }; - }; - }; -} |