Jump to content

Translations:Hugo/13/en

From NixOS Wiki

You may want to limit Hugo installation to your project only. This allows contributors to use the exact dependencies specified for the project:

❄︎ shell.nix
{ pkgs ? import <nixpkgs> {} }:
  pkgs.mkShellNoCC {
    packages = [
      pkgs.hugo
      # Other dependencies for your project.
    ];
  }