From 1ce9faff96fa96ac95d3795c7787c70ccc1563f0 Mon Sep 17 00:00:00 2001 From: Olivier Richard Date: Fri, 18 Oct 2024 14:50:04 +0200 Subject: [PATCH] [flake] add oarshell output --- flake.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 5782bc0b..b7bd2793 100644 --- a/flake.nix +++ b/flake.nix @@ -124,7 +124,14 @@ pkgs.mkShell { packages = with pkgs; [ pre-commit ] ++ pythonEnv; }; - + oarShell = let + pythonEnv = with pkgs.python3Packages; [ + self.defaultPackage.${system} + ]; + in + pkgs.mkShell { + packages = with pkgs; [ litecli ] ++ pythonEnv; + }; }; });