From ba441bcad7c8de1d0c6f07eb4da0ccb86dff3220 Mon Sep 17 00:00:00 2001 From: Julian Sutter Date: Mon, 12 Feb 2024 09:21:00 -0800 Subject: [PATCH] updates + remove oai due to comp error --- flake.lock | 12 ++++++------ modules/dev.nix | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/flake.lock b/flake.lock index ba66cca..31ff516 100755 --- a/flake.lock +++ b/flake.lock @@ -7,11 +7,11 @@ ] }, "locked": { - "lastModified": 1706985585, - "narHash": "sha256-ptshv4qXiC6V0GCfpABz88UGGPNwqs5tAxaRUKbk1Qo=", + "lastModified": 1707683400, + "narHash": "sha256-Zc+J3UO1Xpx+NL8UB6woPHyttEy9cXXtm+0uWwzuYDc=", "owner": "nix-community", "repo": "home-manager", - "rev": "1ca210648a6ca9b957efde5da957f3de6b1f0c45", + "rev": "21b078306a2ab68748abf72650db313d646cf2ca", "type": "github" }, "original": { @@ -22,11 +22,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1706732774, - "narHash": "sha256-hqJlyJk4MRpcItGYMF+3uHe8HvxNETWvlGtLuVpqLU0=", + "lastModified": 1707546158, + "narHash": "sha256-nYYJTpzfPMDxI8mzhQsYjIUX+grorqjKEU9Np6Xwy/0=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "b8b232ae7b8b144397fdb12d20f592e5e7c1a64d", + "rev": "d934204a0f8d9198e1e4515dd6fec76a139c87f0", "type": "github" }, "original": { diff --git a/modules/dev.nix b/modules/dev.nix index e8957e4..ba883d0 100755 --- a/modules/dev.nix +++ b/modules/dev.nix @@ -3,7 +3,7 @@ { environment.systemPackages = with pkgs; [ - (python3.withPackages(ps: with ps; [ pandas requests openai])) + (python3.withPackages(ps: with ps; [ pandas requests ])) nodejs ]; }