refactor: fix shell.nix interface
This commit is contained in:
parent
1e7ccb7acf
commit
2225d6a02c
8 changed files with 24 additions and 18 deletions
|
|
@ -1,8 +1,9 @@
|
|||
{ mkShell
|
||||
, python3
|
||||
}:
|
||||
|
||||
mkShell {
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
let inherit (pkgs)
|
||||
mkShellNoCC
|
||||
python3
|
||||
;
|
||||
in mkShellNoCC {
|
||||
inputsFrom = [ python3.buildEnv.env ];
|
||||
packages = [ python3.pkgs.python-lsp-server ];
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue