blob: 899bd4b917fa9cdf670282100d38fff7b286d967 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{ config, pkgs, lib, ... }: let
cfg = config.features.cli.utils.pandoc;
in {
options.features.cli.utils.pandoc.enable = lib.mkEnableOption "pandoc";
config = lib.mkIf cfg.enable {
programs.pandoc = {
enable = true;
};
home.packages = with pkgs; [
texliveSmall
];
};
}
|