nix-config/home/features/devel/default.nix
2024-08-31 12:33:04 +02:00

19 lines
221 B
Nix

{ pkgs, ... }:
{
imports = [
./php.nix
];
home.packages = with pkgs; [
gcc
gnumake
unzip
openssl
autoconf
# haskell stuff
haskell.compiler.ghc910
cabal-install
stack
];
}