CrOS/devshells/default/default.nix
2025-10-24 13:04:42 -04:00

18 lines
232 B
Nix

{ pkgs, ... }:
pkgs.mkShell {
name = "default";
buildInputs = builtins.attrValues {
inherit (pkgs)
git
vim
nixos-anywhere
ssh-to-age
nvd
;
};
shellHook = ''
jj git fetch
'';
}