nix-config/home/features/devel/default.nix
2024-09-10 21:35:06 +02:00

28 lines
318 B
Nix

{ pkgs, ... }:
{
imports = [
./php.nix
];
home.packages = with pkgs; [
gcc
gnumake
unzip
openssl
autoconf
pkg-config
bun
rustup
# haskell stuff
haskell.compiler.ghc910
cabal-install
stack
# nix stuff
nixpkgs-fmt
nix-tree
nil
nixd
];
}