From 5c886a3b465ec1bda30c06ef66dc3c6aaa895736 Mon Sep 17 00:00:00 2001 From: chn Date: Sat, 17 Jun 2023 19:06:03 +0800 Subject: [PATCH] use generic pandoc --- modules/hardware/chn-PC.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/hardware/chn-PC.nix b/modules/hardware/chn-PC.nix index a7ff3624..dbc38e6a 100644 --- a/modules/hardware/chn-PC.nix +++ b/modules/hardware/chn-PC.nix @@ -15,7 +15,11 @@ specialArgs = { inputs = inputs.inputs; }; modules = [{ config.nixpkgs.config.allowUnfree = true; }]; }).pkgs; - in { mono = generic-pkgs.mono; } + in + { + mono = generic-pkgs.mono; + pandoc = generic-pkgs.pandoc; + } )]; }; };