summaryrefslogtreecommitdiff
path: root/features/user/cli/utils/pandoc.nix
diff options
context:
space:
mode:
Diffstat (limited to 'features/user/cli/utils/pandoc.nix')
-rw-r--r--features/user/cli/utils/pandoc.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/features/user/cli/utils/pandoc.nix b/features/user/cli/utils/pandoc.nix
deleted file mode 100644
index 899bd4b..0000000
--- a/features/user/cli/utils/pandoc.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{ 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
- ];
- };
-}