From 5e5bacfd149aa37ed49745701b68bbfe2bbb884c Mon Sep 17 00:00:00 2001 From: Sam Willcocks Date: Thu, 26 Mar 2026 18:23:57 +0000 Subject: [PATCH] wezterm: enable --- home/profiles.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/home/profiles.nix b/home/profiles.nix index 705e7f2..ddea129 100644 --- a/home/profiles.nix +++ b/home/profiles.nix @@ -18,6 +18,26 @@ { ... }: { imports = [ ./vscode.nix ]; + programs.wezterm = { + enable = true; + extraConfig = '' + return { + color_scheme = "GruvboxDarkHard", + keys = { + { + key = 'd', + mods = 'SUPER', + action = wezterm.action.SplitVertical{domain='CurrentPaneDomain'}, + }, + { + key = 'D', + mods = 'SUPER | SHIFT', + action = wezterm.action.SplitHorizontal{domain='CurrentPaneDomain'}, + }, + }, + } + ''; + }; }; tpmssh = ./tpmssh.nix; # Sensitive stuff