33 lines
832 B
Nix
33 lines
832 B
Nix
{config, pkgs, lib, ...}:
|
|
{
|
|
nixpkgs.config = {
|
|
packageOverrides = pkgs: {
|
|
inherit mergedPkgs;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
ddev
|
|
jetbrains.phpstorm
|
|
mkcert
|
|
php81
|
|
polypane
|
|
vscode
|
|
];
|
|
|
|
# increase inotify limits - https://intellij-support.jetbrains.com/hc/en-us/articles/15268113529362-Inotify-Watches-Limit-Linux
|
|
boot.kernel.sysctl = { "fs.inotify.max_user_watches" = 1048576; };
|
|
|
|
# DDev setup
|
|
# Install & enable docker.
|
|
virtualisation.docker.enable = true;
|
|
|
|
# Allow Xdebug to use port 9003.
|
|
networking.firewall.allowedTCPPorts = [ 9000 9003 ];
|
|
|
|
# Make it possible for ddev to modify the /etc/hosts file.
|
|
# Otherwise you'll have to manually change the
|
|
# hosts configuration after creating a new ddev project.
|
|
environment.etc.hosts.mode = "0644";
|
|
|
|
}
|