about summary refs log tree commit diff
path: root/machines/profpatsch/katara.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/profpatsch/katara.nix')
-rw-r--r--machines/profpatsch/katara.nix11
1 files changed, 8 insertions, 3 deletions
diff --git a/machines/profpatsch/katara.nix b/machines/profpatsch/katara.nix
index ed515a4d..72e88539 100644
--- a/machines/profpatsch/katara.nix
+++ b/machines/profpatsch/katara.nix
@@ -149,9 +149,9 @@ in {
       ];
     in systemPkgs ++ xPkgs ++ guiPkgs ++ userPrograms ++ mailPkgs ++ nixPkgs ++ tmpPkgs;
 
-    system.extraDependencies = lib.singleton (
+    system.extraDependencies = with pkgs; lib.singleton (
        # Haskell packages I want to keep around
-       pkgs.haskellPackages.ghcWithPackages (hpkgs: with hpkgs;
+       haskellPackages.ghcWithPackages (hpkgs: with hpkgs;
          [
            # frp
            frpnow
@@ -159,7 +159,12 @@ in {
            gtk
            frpnow-gtk
            frpnow-gloss
-         ]));
+         ]))
+       ++
+       # other packages that I use sometimes in a shell
+       [
+         wkhtmltopdf
+       ];
 
 
     ###########