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