mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2025-02-22 15:02:08 +00:00
13 lines
201 B
Nix
13 lines
201 B
Nix
|
{ pkgs, ... }: {
|
||
|
|
||
|
packages = with pkgs; [
|
||
|
gitFull
|
||
|
pipenv
|
||
|
python313 # this is a hack to use nixpkgs one instead of compiling from source
|
||
|
];
|
||
|
|
||
|
enterShell = ''
|
||
|
pipenv install
|
||
|
'';
|
||
|
}
|