{ pkgs, ... }: {
  imports = [
    ./mise.nix
    ./php.nix
  ];

  home.packages = with pkgs; [
    # some base packages for development, without which nothing would really work
    gcc
    gnumake
    unzip
    openssl
    autoconf
  ];
}