Move shells to their own files

This commit is contained in:
Greg Hellings
2024-10-04 10:56:22 -05:00
parent ab6980dd62
commit a8a5bcbda6
2 changed files with 20 additions and 18 deletions
+19
View File
@@ -0,0 +1,19 @@
{ self', pkgs, nixvimunstable, ... }:
{
default = pkgs.mkShell {
inherit (self'.checks.pre-commit-check) shellHook;
buildInputs = with pkgs; [
bashInteractive
curl
git
gnutar
gzip
inject
inject-darwin
(nixvimunstable.legacyPackages.${system}.makeNixvim (import ./home/modules/baseline/vim/config.nix { inherit pkgs; inherit (pkgs) lib; }))
self'.checks.pre-commit-check.enabledPackages
tmux
xonsh
];
};
}