Jump to content

All translations

Enter a message name below to show all available translations.

Message

Found one translation.

NameCurrent message text
 h English (en)You may want to limit Hugo installation to your project only. This allows contributors to use the exact dependencies specified for the project:
{{file|shell.nix|nix|<nowiki>
{ pkgs ? import <nixpkgs> {} }:
  pkgs.mkShellNoCC {
   packages = [
     pkgs.hugo
     # Other dependencies for your project.
   ];
  }
</nowiki>}}