about summary refs log tree commit diff
path: root/pkgs/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 /pkgs/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 'pkgs/profpatsch')
-rw-r--r--pkgs/profpatsch/default.nix7
-rw-r--r--pkgs/profpatsch/xdg-open/default.nix3
2 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/profpatsch/default.nix b/pkgs/profpatsch/default.nix
index 3dcde9c3..bc81aa6e 100644
--- a/pkgs/profpatsch/default.nix
+++ b/pkgs/profpatsch/default.nix
@@ -119,7 +119,7 @@ let
       '';
       src = pkgs.fetchgit {
         url = "https://code.tvl.fyi/depot.git";
-        rev = tvlCommit; # 2021-11-13
+        rev = tvlCommit;
         sha256 = tvlSha256;
       };
       prepareSource = runExeclineFns.runExeclineLocalNoSeqL "prepare-tvl" {} [
@@ -133,10 +133,11 @@ let
 
 
 in rec {
+  # tvl = import /home/philip/depot {};
   tvl =
     importTvl {
-      tvlCommit = "e2fbc10ebdb5d85813fd15c5dd371ee8e1e87a22"; # 2021-11-13
-      tvlSha256 = "14hrzx31a7bas64n8rz89388nwfhmy77l5s85g82vvzd5fxg61by";
+      tvlCommit = "72b46e8fe80d9c8c708602387b4d46cce6bb266d"; # 2022-02-28
+      tvlSha256 = "sha256-uWrsbMWe3CZVlsstMrJB4HP3tzU8GgFB7VAsanUBI2g=";
       nixpkgsPath = pkgs.path;
     };
 
diff --git a/pkgs/profpatsch/xdg-open/default.nix b/pkgs/profpatsch/xdg-open/default.nix
index 4d0e6804..83e8105d 100644
--- a/pkgs/profpatsch/xdg-open/default.nix
+++ b/pkgs/profpatsch/xdg-open/default.nix
@@ -19,7 +19,6 @@ let
       // getBins pkgs.s6 [ "s6-ioconnect" ]
       // getBins pkgs.s6-portable-utils [ "s6-test" ]
       // getBins pkgs.s6-networking [ "s6-tcpclient" ]
-      // getBins pkgs.lilyterm-git [ "lilyterm" ]
       // getBins pkgs.netcat-openbsd [ "nc" ]
       // getBins pkgs.dmenu [ "dmenu" "dmenu_path" ]
       # TODO: make sure these are the ones from the environment
@@ -96,7 +95,7 @@ let
   };
 
   exec-in-terminal-emulator = {exe, args}: {
-    exe = bins.lilyterm;
+    exe = pkgs.vuizvui.profpatsch.tvl.users.Profpatsch.alacritty;
     args = file: [
       ({Variable, String}: String "--execute")
       ({Variable, String}: String exe)