mirror of
https://github.com/anotherhadi/nixy.git
synced 2026-05-20 13:22:34 +02:00
9e24c44c53
Signed-off-by: Hadi <112569860+anotherhadi@users.noreply.github.com>
25 lines
377 B
Nix
25 lines
377 B
Nix
{
|
|
pkgs,
|
|
pkgs-stable,
|
|
inputs,
|
|
...
|
|
}: {
|
|
home.packages =
|
|
(with pkgs; [
|
|
# Unstable: latest toolchain versions preferred for dev
|
|
go
|
|
bun
|
|
nodejs
|
|
air
|
|
duckdb
|
|
claude-code
|
|
inputs.bun2nix.packages.${stdenv.hostPlatform.system}.default
|
|
])
|
|
++ (with pkgs-stable; [
|
|
docker
|
|
python3
|
|
jq
|
|
just
|
|
]);
|
|
}
|