From 45d25c68dcffa822a5460ea7ee19aad97c855a74 Mon Sep 17 00:00:00 2001 From: icecodder Date: Sun, 15 Jan 2023 15:13:32 +0100 Subject: [PATCH] fix typo --- shell.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/shell.nix b/shell.nix index c1bbd06..b55f1a7 100644 --- a/shell.nix +++ b/shell.nix @@ -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 {} }: - -# Thisa void typings `pkgs.` before each package name. -with pkgs; + # This avoid typings `pkgs.` before each package name. + with pkgs; # Defines a shell. mkShell { -- 2.39.5