Files
nixos/shells.nix
T
Greg Hellings 854aed86e0 Updates to Flakes and Zeke
Add /dev/sda1 to Zeke
Update Flakes
Add initial colmena support
Add colmena to shells
Update kubernetes pins
2025-12-15 22:18:29 -06:00

38 lines
670 B
Nix

{
pkgs,
nixvimunstable,
colmena,
...
}:
let
inherit (pkgs.stdenv.hostPlatform) system;
vim = (
nixvimunstable.legacyPackages.${system}.makeNixvim (
import ./home/baseline/vim/config.nix {
inherit pkgs;
inherit (pkgs) lib;
config.nixpkgs.config.allowUnfree = false; # I have tried to allow it, but I don't seem able to do so
}
)
);
in
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
colmena.defaultPackage.${system}
stdenv.cc
curl
git
gnutar
gzip
inject
inject-darwin
nushell
vim
xonsh
zellij
];
};
}