summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAlan Pearce2019-09-16 16:51:32 +0200
committerAlan Pearce2019-09-16 16:51:32 +0200
commit20dad9578935f0894cf14311cbabfc1f0ff27fbd (patch)
treef228445d04c548677081721dfe1c27008e11d2a6
parent6e95ba073f09f9c85b0ec4b392f54e9f8c881f96 (diff)
downloadnixos-configuration-20dad9578935f0894cf14311cbabfc1f0ff27fbd.tar.lz
nixos-configuration-20dad9578935f0894cf14311cbabfc1f0ff27fbd.tar.zst
nixos-configuration-20dad9578935f0894cf14311cbabfc1f0ff27fbd.zip
user-interface: switch terminal to xst
-rw-r--r--modules/user-interface.nix9
1 files changed, 3 insertions, 6 deletions
diff --git a/modules/user-interface.nix b/modules/user-interface.nix
index 7c2e31c..cba0a27 100644
--- a/modules/user-interface.nix
+++ b/modules/user-interface.nix
@@ -46,7 +46,8 @@ in
     fish # for emacs-fish-completion
     emacsPackage
     editorScript
-    termite
+
+    xst # st, but with support for XResources
 
     lxappearance
 
@@ -84,11 +85,7 @@ in
 
   services.devmon.enable = true;
 
-  environment.sessionVariables.TERMINAL = "termite";
-  # termite sets a custom TERM whose definition isn't installed by
-  # default. I SSH into too many servers to set this up on every
-  # single one of them, and some get recreated anyway
-  environment.sessionVariables.TERM = "xterm-color";
+  environment.sessionVariables.TERMINAL = "st";
 
   services.nscd.enable = true;
   systemd.services.nscd.wantedBy = lib.mkForce [];