Evergrowing NixOS flake of my setup.
1

Configure Feed

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

simplified jj workflow

MasterEnderman (Jul 18, 2026, 3:55 PM +0200) 96daef8a 3637156d

+1 -7
+1 -7
modules/home/enderman/terminal/nushell.nix
··· 42 42 --push (-p) # also push the bookmark to remote 43 43 message: string # commit message 44 44 ] { 45 - let bookmark = (jj log -r @- --no-graph -T "bookmarks" | str trim | str replace -a "*" "") 46 - 47 - if ($bookmark | is-empty) { 48 - error make { msg: "no bookmark found on @- — set one first with `jj bookmark set <name>`" } 49 - } 50 45 51 46 jj commit -m $message 52 - jj bookmark set $bookmark -r @- 53 47 54 48 if $push { 55 - jj git push --bookmark $bookmark 49 + jj git push 56 50 } 57 51 } 58 52