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..." |
merge proposal |
||
(One intermediate revision by the same user not shown) | |||
Line 1: | Line 1: | ||
{{Merge|Development_environment_with_nix-shell|scope=article}}{{Expand|scope=article}} | |||
== Installation == | == Installation == | ||
<syntaxhighlight lang="nixos"> | <syntaxhighlight lang="nixos"> |