Zeal. Sadly doesn't have the any custom docset.

Specifically it is missing nixos/home-manager.
This commit is contained in:
James Patrick 2022-05-22 19:35:59 -04:00
parent 32ba5505f0
commit 1b1fdef513
2 changed files with 17 additions and 0 deletions

View File

@ -11,6 +11,7 @@
./media.nix
./nextcloud.nix
./spotify.nix
./zeal.nix
./i3
./sway

View File

@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
let
cfg = config.this.application.zeal;
graphical = config.this.graphical;
in with lib; {
options = {
this.application.zeal.enable = mkOption {
default = graphical.enable;
type = with types; bool;
};
};
config = mkIf cfg.enable {
home-manager.users.james.home.packages = with pkgs; [ zeal ];
};
}