Update the devshell for jj use instead of git

This commit is contained in:
TheWanderingCrow 2025-10-24 13:01:46 -04:00
parent f7c2355baa
commit de157f3e9a

View file

@ -1,10 +1,9 @@
{pkgs, ...}:
{ pkgs, ... }:
pkgs.mkShell {
name = "default";
buildInputs = builtins.attrValues {
inherit
(pkgs)
inherit (pkgs)
git
vim
nixos-anywhere
@ -14,6 +13,6 @@ pkgs.mkShell {
};
shellHook = ''
git pull
jj fetch
'';
}