Initial commit

This commit is contained in:
Jacob VanDomelen 2025-11-15 10:14:06 -08:00
commit 2c79612f00
No known key found for this signature in database
2 changed files with 26 additions and 0 deletions

2
jj_persistent_log.sh Executable file
View file

@ -0,0 +1,2 @@
#!/bin/bash
watch --color -n 1 jj log --color always

24
shell.nix Normal file
View file

@ -0,0 +1,24 @@
{ pkgs ? import (fetchTarball {
url = "https://github.com/NixOS/nixpkgs/tarball/nixos-25.05";
sha256 = "0bz1qwd1fw9v4hmxi6h2qfgvxpv4kwdiz7xd9p7j1msr0b8d54h3";
}) {} }:
pkgs.mkShell {
name = "env";
buildInputs = with pkgs; [
helix
zellij
keychain
jujutsu
watch
clojure
];
shellHook = ''
keychain -k all
eval $(keychain --quiet --eval github)
echo "SSH Agent is ready for commit signing"
'';
}