From be8fb9811b7a7c0d1f823ecee44a0600523ef68b Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Wed, 12 Nov 2025 13:51:08 +0000 Subject: [PATCH] Don't start tmux after cloning --- modules/scripts/clone.nix | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/modules/scripts/clone.nix b/modules/scripts/clone.nix index dc655e91..b41f4ec9 100644 --- a/modules/scripts/clone.nix +++ b/modules/scripts/clone.nix @@ -2,14 +2,13 @@ { perSystem = - psArgs@{ pkgs, ... }: + { pkgs, ... }: { packages.clone = pkgs.writeShellApplication { name = "clone"; runtimeInputs = with pkgs; [ git - psArgs.config.packages.start-tmux ]; text = '' @@ -34,8 +33,6 @@ mkdir -pv "$repo_path" git clone "$repo_url" "$repo_path" - - start-tmux "$repo_path" else exit 1 fi