Initial commit
This commit is contained in:
commit
2c79612f00
2 changed files with 26 additions and 0 deletions
2
jj_persistent_log.sh
Executable file
2
jj_persistent_log.sh
Executable file
|
|
@ -0,0 +1,2 @@
|
||||||
|
#!/bin/bash
|
||||||
|
watch --color -n 1 jj log --color always
|
||||||
24
shell.nix
Normal file
24
shell.nix
Normal 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"
|
||||||
|
'';
|
||||||
|
}
|
||||||
Loading…
Add table
Reference in a new issue