diff options
| -rw-r--r-- | shell.nix | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -1,9 +1,8 @@ # This defines a function taking `pkgs` as parameter, and uses # `nixpkgs` by default if no argument is passed to it. { pkgs ? import <nixpkgs> {} }: - -# Thisa void typings `pkgs.` before each package name. -with pkgs; + # This avoid typings `pkgs.` before each package name. + with pkgs; # Defines a shell. mkShell { |
