about summary refs log tree commit diff
path: root/modules/user/aszlig/programs/xpdf/default.nix
diff options
context:
space:
mode:
authoraszlig <aszlig@redmoonstudios.org>2017-09-02 03:10:00 +0200
committeraszlig <aszlig@redmoonstudios.org>2017-09-02 03:10:00 +0200
commitf23304e0f525ad1f09aeae6c0ecc9fde56eaf111 (patch)
tree68d062c0dffcd24e9dff464e35202332588efbb2 /modules/user/aszlig/programs/xpdf/default.nix
parent3e15d15a7710e1d34ef0d8105afe4c8732b80cc2 (diff)
madules/programs: Remove xpdf module
Since version 4.0 of xpdf, the UI has vastly changed and the
configuration setting I'm using in this module no longer is necessary
for me. So let's drop the module altogether until I'm getting used to
the new xpdf and find new things I don't like :-)

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Diffstat (limited to 'modules/user/aszlig/programs/xpdf/default.nix')
-rw-r--r--modules/user/aszlig/programs/xpdf/default.nix20
1 files changed, 0 insertions, 20 deletions
diff --git a/modules/user/aszlig/programs/xpdf/default.nix b/modules/user/aszlig/programs/xpdf/default.nix
deleted file mode 100644
index e7edd806..00000000
--- a/modules/user/aszlig/programs/xpdf/default.nix
+++ /dev/null
@@ -1,20 +0,0 @@
-{ config, pkgs, lib, ... }:
-
-let
-  cfg = config.vuizvui.user.aszlig.programs.xpdf;
-
-  xpdf = pkgs.xpdf.overrideDerivation (drv: {
-    postInstall = (drv.postInstall or "") + ''
-      echo 'bind ctrl-o any toggleOutline' >> "$out/etc/xpdfrc"
-    '';
-  });
-
-in {
-  options.vuizvui.user.aszlig.programs.xpdf = {
-    enable = lib.mkEnableOption "aszlig's xpdf";
-  };
-
-  config = lib.mkIf cfg.enable {
-    environment.systemPackages = lib.singleton xpdf;
-  };
-}