Devenv: Difference between revisions

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..."
 
Malix (talk | contribs)
m request expand
Line 1: Line 1:
{{Expand|scope=article}}
== Installation ==
== Installation ==
<syntaxhighlight lang="nixos">
<syntaxhighlight lang="nixos">