Files
nixos/shells.nix
T
2025-12-16 09:07:55 -06:00

26 lines
334 B
Nix

{
pkgs,
colmena,
...
}:
let
inherit (pkgs.stdenv.hostPlatform) system;
in
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
colmena.defaultPackage.${system}
stdenv.cc
curl
git
gnutar
gzip
inject
inject-darwin
vim
zellij
];
};
}