about summary refs log tree commit diff
path: root/machines/profpatsch
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2022-02-28 15:39:07 +0100
committerProfpatsch <mail@profpatsch.de>2022-02-28 15:49:28 +0100
commitea8bb055096500bfbf4dcf4556c00c210d5e2810 (patch)
treeaf9e1b94c1903f9eaf8ed2943823a04a2af630a6 /machines/profpatsch
parentbb9f4e5ca8211bbe7d2838119a49c2a23a81188d (diff)
machines/profpatsch: use alacritty as terminal-emulator
This is the alacritty wrapper that is added from `~/bin`.

This is a bit badly set up atm, but might change once I move things
together into one repo.
Diffstat (limited to 'machines/profpatsch')
-rw-r--r--machines/profpatsch/base-workstation.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/machines/profpatsch/base-workstation.nix b/machines/profpatsch/base-workstation.nix
index d5989e24..5c182f8f 100644
--- a/machines/profpatsch/base-workstation.nix
+++ b/machines/profpatsch/base-workstation.nix
@@ -51,7 +51,6 @@ in {
     # Graphical System
 
     services.xserver = {
-
       enable = true;
       layout = "de";
       xkbVariant = "neo";
@@ -74,8 +73,9 @@ in {
         sessionCommands = with pkgs; ''
             #TODO add as nixpkg
             export PATH+=":$HOME/scripts" #add utility scripts
-            export TERMINAL=${lilyterm-git}/bin/lilyterm
+            export PATH+=":$HOME/bin" #add user-specific binaries (filled by nix-home)
             export EDITOR="emacsclient --create-frame"
+            export TERMINAL=terminal-emulator
 
             ${xorg.xset}/bin/xset r rate 250 35
 
@@ -133,7 +133,6 @@ in {
       ];
       # minimal set of gui applications
       guiPkgs = [
-        lilyterm-git      # terminal emulator, best one around
         dmenu             # minimal launcher
         (pkgs.vuizvui.profpatsch.binify { exe = pkgs.vuizvui.profpatsch.xdg-open; name = "xdg-open"; }) # override the crap freedesktop crap
       ];