From 2a0e0e7456e60c90002b72f42fb64592e943207d Mon Sep 17 00:00:00 2001 From: dumball11 Date: Thu, 10 Feb 2022 13:18:40 +0530 Subject: [PATCH] first commit --- shell.nix | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/shell.nix b/shell.nix index 2dbf04f..7edbeae 100644 --- a/shell.nix +++ b/shell.nix @@ -2,14 +2,13 @@ tinypkgs ? import (fetchTarball https://gitlab.inria.fr/nix-tutorial/packages-repository/-/archive/master/packages-repository-master.tar.gz) {} }: -with tinypkgs; # Put tinypkgs's attributes in the current scope. -with pkgs; # Same for pkgs. +with tinypkgs; +with pkgs; mkShell { buildInputs = [ chord - # Defines a python + set of packages. (python3.withPackages (ps: with ps; with python3Packages; [ jupyter ipython @@ -20,6 +19,5 @@ mkShell { ])) ]; - # Automatically run jupyter when entering the shell. shellHook = "jupyter notebook"; }