Refactor
All checks were successful
/ check (push) Successful in 50s

This commit is contained in:
Oliver Davies 2025-09-03 08:30:15 +01:00
parent 21d9ca8737
commit fcfdc8a580
2 changed files with 126 additions and 103 deletions

View file

@ -1,42 +1,53 @@
{ withSystem, ... }:
{
perSystem =
psArgs@{ pkgs, ... }:
{
packages.clone = pkgs.writeShellApplication {
name = "clone";
runtimeInputs = with pkgs; [
git
psArgs.config.packages.tmux-sessionizer
];
text = ''
repo_url="$1"
repo_url="''${repo_url%.git}"
if [[ "$repo_url" =~ ^(git@|https://|ssh://forgejo@)?([^:/]+)[:/](.*)/(.*)$ ]]; then
domain="''${BASH_REMATCH[2]}"
if [[ "$domain" == "ssh.oliverdavies.uk" ]]; then
domain="code.oliverdavies.uk"
fi
user="''${BASH_REMATCH[3]}"
name="''${BASH_REMATCH[4]}"
user_path="$XDG_REPOS_DIR/$domain/$user"
repo_path="$user_path/$name"
[[ -d "$repo_path" ]] && tmux-sessionizer "$repo_path" && exit 0
mkdir -pv "$repo_path"
git clone "$repo_url" "$repo_path"
tmux-sessionizer "$repo_path"
else
exit 1
fi
'';
};
};
flake.modules.homeManager.base =
{ pkgs, ... }:
{
home.packages = [
(pkgs.writeShellApplication {
name = "clone";
runtimeInputs = with pkgs; [ git ];
text = ''
repo_url="$1"
repo_url="''${repo_url%.git}"
if [[ "$repo_url" =~ ^(git@|https://|ssh://forgejo@)?([^:/]+)[:/](.*)/(.*)$ ]]; then
domain="''${BASH_REMATCH[2]}"
if [[ "$domain" == "ssh.oliverdavies.uk" ]]; then
domain="code.oliverdavies.uk"
fi
user="''${BASH_REMATCH[3]}"
name="''${BASH_REMATCH[4]}"
user_path="$XDG_REPOS_DIR/$domain/$user"
repo_path="$user_path/$name"
[[ -d "$repo_path" ]] && tmux-sessionizer "$repo_path" && exit 0
mkdir -pv "$repo_path"
git clone "$repo_url" "$repo_path"
tmux-sessionizer "$repo_path"
else
exit 1
fi
'';
})
(withSystem pkgs.system (psArgs: psArgs.config.packages.clone))
];
};
}