mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 01:24:05 -05:00
19 lines
254 B
Nix
19 lines
254 B
Nix
{ pkgs, ... }:
|
|
pkgs.mkShell {
|
|
name = "default";
|
|
|
|
buildInputs = builtins.attrValues {
|
|
inherit (pkgs)
|
|
git
|
|
vim
|
|
nixos-anywhere
|
|
ssh-to-age
|
|
nvd
|
|
;
|
|
};
|
|
|
|
shellHook = ''
|
|
jj git fetch
|
|
jj rebase -d prod
|
|
'';
|
|
}
|