Don't start tmux after cloning
Some checks are pending
/ check (push) Waiting to run

This commit is contained in:
Oliver Davies 2025-11-12 13:51:08 +00:00
parent f82502cd9c
commit be8fb9811b

View file

@ -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