128 current 2024-05-16 22:00:08 24.05.20240419.5c24cf2 6.6.28 *

This commit is contained in:
sadanslargehole 2024-05-16 22:00:20 -04:00
parent da5e4d9bcb
commit fa1e61315d
No known key found for this signature in database
GPG key ID: B2E2F4A5161A7800

View file

@ -47,6 +47,7 @@ in
# The home.packages option allows you to install Nix packages into your
# environment.
home.packages = with pkgs;[
tailscale
clang
gnumake
jq
@ -129,9 +130,9 @@ in
# echo "Hello, ${config.home.username}!"
# '')
(pkgs.writeShellScriptBin "git_fetchAll" ''
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "''${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
git branch -r | grep -v '\->' | sed "s,\x1B\[[0-9;]*[a-zA-Z],,g" | while read remote; do git branch --track "''${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
'')
(pkgs.writeShellScriptBin "install_eslint" ''
set -x