niksos/modules/gui/zathura.nix

38 lines
977 B
Nix
Raw Normal View History

2023-09-08 16:10:15 +02:00
{
2023-10-13 21:04:24 +02:00
config,
lib,
2023-09-08 16:10:15 +02:00
...
2024-05-05 12:38:40 +02:00
}: let
2024-07-15 23:18:25 +02:00
cfg = config.poz.programs.zathura;
inherit (config.poz.other.system) username;
2024-05-05 12:38:40 +02:00
2024-07-25 11:45:44 +02:00
inherit (lib.modules) mkIf;
2024-10-02 18:23:22 +02:00
inherit (lib.options) mkEnableOption mkOption;
inherit (lib.types) nullOr path;
2023-10-13 21:04:24 +02:00
in {
2024-10-02 18:23:22 +02:00
options.poz.programs.zathura = {
enable = mkEnableOption "zathura";
themeFile = mkOption {
type = nullOr path;
description = "path to theme file";
default = null;
};
};
2023-10-13 21:04:24 +02:00
config = mkIf cfg.enable {
home-manager.users.${username} = {
2024-10-02 18:23:22 +02:00
xdg.configFile."zathura/theme".source = mkIf (cfg.themeFile != null) cfg.themeFile;
2023-09-08 16:10:15 +02:00
2023-10-13 21:04:24 +02:00
programs.zathura = {
enable = true;
2024-10-02 18:23:22 +02:00
extraConfig = mkIf (cfg.themeFile != null) ''
include theme
2023-10-13 21:04:24 +02:00
'';
options = {
selection-clipboard = "clipboard";
};
};
2023-09-08 16:10:15 +02:00
};
};
}