marleyos/modules/home/programs/zathura.nix
2025-05-31 17:57:56 -07:00

16 lines
281 B
Nix

{
config,
lib,
pkgs,
...
}: let
cfg = config.marleyos.programs.zathura;
in {
options.marleyos.programs.zathura.enable = lib.mkEnableOption "zathura";
config = lib.mkIf (cfg.enable && pkgs.stdenv.isLinux) {
programs.zathura = {
enable = true;
};
};
}