From 617a02f382f25ec2316cfcf7197d8d40059fb002 Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sat, 16 Jul 2022 17:25:47 +0800 Subject: [PATCH] hosts/ni: install wezterm --- hosts/ni/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/ni/default.nix b/hosts/ni/default.nix index 394291ac..9e143e4b 100644 --- a/hosts/ni/default.nix +++ b/hosts/ni/default.nix @@ -61,8 +61,14 @@ environment.systemPackages = with pkgs; [ # This is installed just to get Geiser to properly work. guile_3_0 + + # The preferred terminal emulator. + wezterm ]; + # This is needed for shell integration and applying semantic zones. + environment.profiles = [ pkgs.wezterm ]; + # Enable Guix service. services.guix-binary.enable = true;