From 4cd47fb7abb38d78c7e1c5b94336627c25bd1b7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabi=C3=A1n=20Montero?= Date: Wed, 27 Apr 2022 20:38:00 -0600 Subject: [PATCH] =?UTF-8?q?a=C3=B1ade=20shenv=20de=20jupyter=20y=20de=20ma?= =?UTF-8?q?d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shenvs/chrome.nix | 5 ----- shenvs/config.nix | 1 + shenvs/mad.nix | 8 ++++++++ 3 files changed, 9 insertions(+), 5 deletions(-) delete mode 100644 shenvs/chrome.nix create mode 100644 shenvs/mad.nix diff --git a/shenvs/chrome.nix b/shenvs/chrome.nix deleted file mode 100644 index 7c15d87..0000000 --- a/shenvs/chrome.nix +++ /dev/null @@ -1,5 +0,0 @@ -pkgs: { - paths = with pkgs; [ - google-chrome - ]; -} diff --git a/shenvs/config.nix b/shenvs/config.nix index 9563aaa..2a40a4a 100644 --- a/shenvs/config.nix +++ b/shenvs/config.nix @@ -2,5 +2,6 @@ shenvs: { gcKeep = with shenvs; [ armasm anpi + jupyter ]; } diff --git a/shenvs/mad.nix b/shenvs/mad.nix new file mode 100644 index 0000000..2b7db52 --- /dev/null +++ b/shenvs/mad.nix @@ -0,0 +1,8 @@ +pkgs: { + paths = with pkgs; [ + octave + (python39.withPackages ( packages: with packages; [ + psycopg2 + ] )) + ]; +}