Skip to content

Commit

Permalink
[flake] add oarshell output
Browse files Browse the repository at this point in the history
  • Loading branch information
augu5te committed Oct 18, 2024
1 parent 52f2e75 commit 1ce9faf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
};
};

});
Expand Down

0 comments on commit 1ce9faf

Please sign in to comment.