2022-05-06 03:01:56 +00:00
|
|
|
{ config, pkgs, lib, ... }: {
|
2022-04-29 02:43:50 +00:00
|
|
|
|
2022-12-21 21:18:03 +00:00
|
|
|
options = {
|
|
|
|
media = {
|
|
|
|
enable = lib.mkEnableOption {
|
|
|
|
description = "Enable media programs.";
|
|
|
|
default = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = lib.mkIf (config.gui.enable && config.media.enable) {
|
2023-02-17 23:14:57 +00:00
|
|
|
home-manager.users.${config.user} = {
|
|
|
|
home.packages = with pkgs; [
|
|
|
|
sxiv # Image viewer
|
|
|
|
mupdf # PDF viewer
|
|
|
|
zathura # PDF viewer
|
|
|
|
];
|
|
|
|
|
2023-03-11 19:14:45 +00:00
|
|
|
# Video player
|
|
|
|
programs.mpv = {
|
|
|
|
enable = true;
|
|
|
|
bindings = { };
|
|
|
|
config = { image-display-duration = 2; };
|
|
|
|
scripts = [ pkgs.mpvScripts.autoload ];
|
|
|
|
};
|
|
|
|
|
2023-02-17 23:14:57 +00:00
|
|
|
# Set default for opening PDFs
|
2023-03-09 03:58:49 +00:00
|
|
|
xdg.mimeApps = {
|
|
|
|
associations.added = {
|
|
|
|
"application/pdf" = [ "pwmt.zathura-cb.desktop" ];
|
|
|
|
"image/*" = [ "sxiv.desktop" ];
|
|
|
|
};
|
|
|
|
associations.removed = { "application/pdf" = [ "mupdf.desktop" ]; };
|
|
|
|
defaultApplications = {
|
|
|
|
"application/pdf" = [ "pwmt.zathura-cb.desktop" ];
|
|
|
|
"image/*" = [ "sxiv.desktop" ];
|
|
|
|
};
|
|
|
|
};
|
2023-02-17 23:14:57 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
2022-04-29 02:43:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|