Reorganize imports
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
20
hosts/common/shells/python/default.nix
Normal file
20
hosts/common/shells/python/default.nix
Normal file
@@ -0,0 +1,20 @@
|
||||
{ pkgs, ... }:
|
||||
pkgs.mkShell {
|
||||
packages = with pkgs; [
|
||||
(python3.withPackages (
|
||||
python-pkgs: with python-pkgs; [
|
||||
pip
|
||||
numpy
|
||||
pandas
|
||||
python-dotenv
|
||||
requests
|
||||
]
|
||||
))
|
||||
];
|
||||
|
||||
shellHook = ''
|
||||
export P10K_EXTRA_RIGHT_PROMPT_ELEMENTS=(
|
||||
virtualenv
|
||||
)
|
||||
'';
|
||||
}
|
Reference in New Issue
Block a user