2024-07-19 14:00:55 +02:00

24 lines
294 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.modules.zathura;
in
{
options.modules.zathura.enable = lib.mkEnableOption "zathura";
config = lib.mkIf cfg.enable {
programs.zathura = {
enable = true;
options = {
guioptions = "none";
};
};
};
}