Jump to content

Devenv: Revision history

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

19 August 2025

  • curprev 04:5704:57, 19 August 2025 StijnRuts talk contribs 1,285 bytes +1,285 Created page with "== Installation == <syntaxhighlight lang="nixos"> environment.systemPackages = [ pkgs.devenv ]; </syntaxhighlight> == Binding to privileged ports (eg. 80 and 443) == The [https://devenv.sh/integrations/wordpress/ Wordpress example] in the guide suggests the following script:<syntaxhighlight lang="nix"> scripts.caddy-setcap.exec = '' sudo setcap 'cap_net_bind_service=+ep' ${pkgs.caddy}/bin/caddy ''; </syntaxhighlight>But this does not work on NixOS. It fails with <co..." Tag: Visual edit