From 774b34cc49b3d67c31ea2969bf5a82b81e32627c Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Mon, 22 Sep 2025 08:57:47 -0500 Subject: [PATCH 1/2] Remove docker from IVR and add uv --- darwin/hosts/ivr/default.nix | 7 ------- home/baseline/tools.nix | 1 + 2 files changed, 1 insertion(+), 7 deletions(-) diff --git a/darwin/hosts/ivr/default.nix b/darwin/hosts/ivr/default.nix index 8cbf603..5d496d2 100644 --- a/darwin/hosts/ivr/default.nix +++ b/darwin/hosts/ivr/default.nix @@ -11,12 +11,7 @@ in enable = true; brews = [ "bitwarden-cli" - { - name = "colima"; - restart_service = true; - } "direnv" - "docker-compose" { name = "libvirt"; restart_service = true; @@ -37,7 +32,6 @@ in "bruno" "chromium" "dbeaver-community" - "docker" "ghostty" "firefox" "microsoft-teams" @@ -46,7 +40,6 @@ in "pgadmin4" "podman-desktop" "tabby" - "twine" "vagrant" "virtualbox" "visual-studio-code" diff --git a/home/baseline/tools.nix b/home/baseline/tools.nix index dee199c..59ea497 100644 --- a/home/baseline/tools.nix +++ b/home/baseline/tools.nix @@ -10,6 +10,7 @@ lazyssh rainfrog tenere + uv wiki-tui ] ++ (lib.optionals pkgs.stdenv.hostPlatform.isLinux [ From eeb719e6b506ef72edb8be31f1936fc09563a09e Mon Sep 17 00:00:00 2001 From: Greg Hellings Date: Tue, 23 Sep 2025 11:30:38 -0500 Subject: [PATCH 2/2] Fix Ghostty on SSH --- home/baseline/ssh.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/home/baseline/ssh.nix b/home/baseline/ssh.nix index 0510bfe..6a6a611 100644 --- a/home/baseline/ssh.nix +++ b/home/baseline/ssh.nix @@ -28,7 +28,10 @@ "*" = { dynamicForwards = [ { port = 10240; } ]; serverAliveInterval = 60; - extraOptions.LogLevel = "error"; + extraOptions = { + LogLevel = "error"; + SetEnv = "TERM=xterm-256color"; + }; }; "10.42.1.4" = lib.hm.dag.entryBefore [ "10.42.*" ] nas;