This repository has been archived on 2023-08-08. You can view files and clone it, but cannot push or open issues or pull requests.
nil/modules/applications/zathura.nix

17 lines
371 B
Nix
Raw Normal View History

2022-08-06 22:06:46 +00:00
{ config, lib, pkgs, ... }:
let
2022-08-14 02:42:04 +00:00
cfg = config.my.application.zathura;
graphical = config.my.graphical;
2022-08-06 22:06:46 +00:00
in with lib; {
options = {
2022-08-14 02:42:04 +00:00
my.application.zathura.enable = mkOption {
2022-08-06 22:06:46 +00:00
default = graphical.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
home-manager.users.james = { programs.zathura = { enable = true; }; };
};
}