nixos configs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

git: helper to merge workflows

+8
+8
home/modules/programs/git.nix
··· 128 128 # maybe zsh subshell in this path and remove/purge when returning? 129 129 echo "new tree: $(realpath wt/$name)" 130 130 ''; 131 + 132 + add-gha = pkgs.writeScriptBin "add-gha" '' 133 + #!/usr/bin/env zsh 134 + set -eu -o pipefail 135 + 136 + git subtree add --prefix=.github https://github.com/iff/ci-conf.git main --squash 137 + ''; 131 138 in 132 139 { 133 140 home.packages = [ ··· 136 143 pkgs.jujutsu 137 144 pkgs.moreutils 138 145 # 146 + add-gha 139 147 git-ssh-dispatch 140 148 gpr 141 149 wt