Zeal. Sadly doesn't have the any custom docset.
Specifically it is missing nixos/home-manager.
This commit is contained in:
parent
32ba5505f0
commit
1b1fdef513
|
@ -11,6 +11,7 @@
|
||||||
./media.nix
|
./media.nix
|
||||||
./nextcloud.nix
|
./nextcloud.nix
|
||||||
./spotify.nix
|
./spotify.nix
|
||||||
|
./zeal.nix
|
||||||
|
|
||||||
./i3
|
./i3
|
||||||
./sway
|
./sway
|
||||||
|
|
16
modules/applications/zeal.nix
Normal file
16
modules/applications/zeal.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
}
|
Reference in New Issue
Block a user