From c5a09b9246d2ce25236e710e2fb6bc0287198bb9 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Tue, 24 Jun 2025 14:17:58 -0400 Subject: [PATCH] use unstable warp terminal --- common/users/homeModules/terminal/warp.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/common/users/homeModules/terminal/warp.nix b/common/users/homeModules/terminal/warp.nix index a69ac3c..fe6da01 100644 --- a/common/users/homeModules/terminal/warp.nix +++ b/common/users/homeModules/terminal/warp.nix @@ -1,8 +1,11 @@ { pkgs, ... }: { + imports = [ + ../unstable.nix + ]; home = { packages = with pkgs; [ - warp-terminal + unstable.warp-terminal ]; }; }