9 lines
162 B
Nix
9 lines
162 B
Nix
{pkgs, ...}: {
|
|
environment.systemPackages = with pkgs; [
|
|
python3Full
|
|
python3Packages.build
|
|
python3Packages.pip
|
|
python3Packages.installer
|
|
];
|
|
}
|