Skip to content

Commit 0eac31d

Browse files
author
fedx-sudo
committed
Add Nix Shell support
1 parent f00d657 commit 0eac31d

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Diff for: shell.nix

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{ pkgs ? import <nixpkgs> {} }:
2+
let
3+
myAppEnv = pkgs.poetry2nix.mkPoetryEnv {
4+
projectDir = ./.;
5+
editablePackageSources = {
6+
my-app = ./src;
7+
};
8+
};
9+
in myAppEnv.env

0 commit comments

Comments
 (0)