mirror of
https://mau.dev/andreijiroh-dev/website.git
synced 2025-02-21 14:32:09 +00:00
12 lines
201 B
Nix
12 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
|
|
'';
|
|
}
|