nix-config/home/features/devel/default.nix

14 lines
144 B
Nix

{ pkgs, ... }:
{
imports = [
./php.nix
];
home.packages = with pkgs; [
gcc
gnumake
unzip
openssl
autoconf
];
}