19 lines
221 B
Nix
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
|
|
];
|
|
}
|