From b4792327e6a283651b6ba0baf8500f2af2c5bd3e Mon Sep 17 00:00:00 2001 From: chn Date: Sun, 10 Sep 2023 00:26:51 +0800 Subject: [PATCH] Revert "nixpkgs: use generic pandoc" This reverts commit 558a61a0f1c9f71482c6e8183131b716ee2358f0. --- modules/system/nixpkgs.nix | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/modules/system/nixpkgs.nix b/modules/system/nixpkgs.nix index e7b091ab..135daa9b 100644 --- a/modules/system/nixpkgs.nix +++ b/modules/system/nixpkgs.nix @@ -22,12 +22,8 @@ inputs: { config.allowUnfree = true; config.cudaSupport = nixpkgs.cudaSupport; - overlays = [(final: prev: rec - { - genericPackages = - import inputs.topInputs.nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; }; - pandoc = genericPackages.pandoc; - })]; + overlays = [(final: prev: { genericPackages = + import inputs.topInputs.nixpkgs { system = "x86_64-linux"; config.allowUnfree = true; };})]; }; } (