]> git.puffer.fish Git - matthieu/nova.git/commitdiff
fix typo
authoricecodder <git@icecodder.me>
Sun, 15 Jan 2023 14:13:32 +0000 (15:13 +0100)
committericecodder <git@icecodder.me>
Sun, 15 Jan 2023 14:13:32 +0000 (15:13 +0100)
shell.nix

index c1bbd06f736c52554146e69990fa2ce6c6816c5d..b55f1a7080eb0ac54a496fa955eae80bfa7e9b46 100644 (file)
--- 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 {