about summary refs log tree commit diff
path: root/machines/profpatsch/base-workstation.nix
diff options
context:
space:
mode:
Diffstat (limited to 'machines/profpatsch/base-workstation.nix')
-rw-r--r--machines/profpatsch/base-workstation.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/machines/profpatsch/base-workstation.nix b/machines/profpatsch/base-workstation.nix
index dd73909a..d1a14e70 100644
--- a/machines/profpatsch/base-workstation.nix
+++ b/machines/profpatsch/base-workstation.nix
@@ -70,7 +70,7 @@ in {
             #TODO add as nixpkg
             export PATH+=":$HOME/scripts" #add utility scripts
             export EDITOR=emacsclient
-            export TERMINAL=${lilyterm}/bin/lilyterm
+            export TERMINAL=${lilyterm-git}/bin/lilyterm
 
             ${xorg.xset}/bin/xset r rate 250 35
 
@@ -128,7 +128,12 @@ in {
         traceroute        # trace ip routes
         wirelesstools     # iwlist (wifi scan)
       ];
-    in basePkgs;
+      # minimal set of gui applications
+      guiPkgs = [
+        lilyterm-git      # terminal emulator, best one around
+        dmenu             # minimal launcher
+      ];
+    in basePkgs ++ guiPkgs;
 
     # friendly user shell
    programs.fish.enable = true;