1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
{ pkgs, lib, }: let path = with pkgs; [ nvd nix-output-monitor ]; in pkgs.writers.writeNuBin "setup" { makeWrapperArgs = [ "--prefix" "PATH" ":" "${lib.makeBinPath path}" ]; } (builtins.readFile ./setup.nu)