16 lines
416 B
Nix
16 lines
416 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
ddev
|
|
];
|
|
|
|
# There's some one-time setup here
|
|
# ddev config global --router-http-port=8880 --router-https-port=8843
|
|
# There should also be a route for *.ddev.site in our nextdns config
|
|
# services.caddy = {
|
|
# enable = true;
|
|
# virtualHosts."*.ddev.site:80".extraConfig = ''
|
|
# reverse_proxy http://localhost:8880
|
|
# '';
|
|
# };
|
|
}
|