Files
nixos/shells.nix
T

38 lines
670 B
Nix
Raw Normal View History

2024-10-19 01:41:53 -05:00
{
pkgs,
nixvimunstable,
2025-12-15 21:51:27 -06:00
colmena,
2024-10-19 01:41:53 -05:00
...
}:
2024-10-10 13:01:37 -05:00
let
2025-12-15 21:51:27 -06:00
inherit (pkgs.stdenv.hostPlatform) system;
2024-10-19 01:41:53 -05:00
vim = (
nixvimunstable.legacyPackages.${system}.makeNixvim (
2025-06-11 02:44:36 -05:00
import ./home/baseline/vim/config.nix {
2024-10-19 01:41:53 -05:00
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
}
)
2024-10-10 13:01:37 -05:00
);
in
2024-10-04 10:56:22 -05:00
{
default = pkgs.mkShell {
buildInputs = with pkgs; [
bashInteractive
2025-12-15 21:51:27 -06:00
colmena.defaultPackage.${system}
2025-12-08 05:53:17 -06:00
stdenv.cc
2024-10-04 10:56:22 -05:00
curl
git
gnutar
gzip
inject
inject-darwin
2025-12-08 05:53:17 -06:00
nushell
2024-10-10 13:01:37 -05:00
vim
2024-10-04 10:56:22 -05:00
xonsh
2025-12-08 05:53:17 -06:00
zellij
2024-10-04 10:56:22 -05:00
];
};
}