summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoricecodder <git@icecodder.me>2023-01-15 15:13:32 +0100
committericecodder <git@icecodder.me>2023-01-15 15:13:32 +0100
commit45d25c68dcffa822a5460ea7ee19aad97c855a74 (patch)
tree5d7b582207ef263e2b83dd6c359319fb120ecd46
parent93b23121228ee15c7889279abb4ba5061246dde0 (diff)
fix typo
-rw-r--r--shell.nix5
1 files 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 <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 {