mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 17:54:08 -05:00
19 lines
232 B
Nix
19 lines
232 B
Nix
{pkgs, ...}:
|
|
pkgs.mkShell {
|
|
name = "default";
|
|
|
|
buildInputs = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
git
|
|
vim
|
|
nixos-anywhere
|
|
ssh-to-age
|
|
nvd
|
|
;
|
|
};
|
|
|
|
shellHook = ''
|
|
git pull
|
|
'';
|
|
}
|