feat: add kickstart nixcats

This commit is contained in:
2025-03-04 22:04:04 +02:00
parent 0e0e75eeb6
commit 9eb69a64e5
44 changed files with 1944 additions and 2 deletions

34
old/runtimeDeps.nix Normal file
View File

@@ -0,0 +1,34 @@
{ pkgs }:
{
dependencies =
with pkgs;
[
nixfmt-rfc-style # nix formatter
(terraform.overrideAttrs (oldAttrs: {
meta.license = lib.licenses.mpl20;
})) # terraform fmt
ripgrep
fd
git
curl # needed to fetch titles from urls
wget
cargo
php82
php82Packages.composer
go
ruby
luarocks
zulu # java11
fish
fzf
perl540
perl540Packages.CPAN
unzip
tree-sitter
gnumake
lazygit
python312
python312Packages.pip
]
++ (if pkgs.stdenv.hostPlatform.isDarwin then [ ] else [ gcc ]);
}