Files
nixos/system/dev/python.nix
T
lsoriano-mcm 306ee40129 Revert "FIX: finally fixed flake.lock"
This reverts commit 1e19f865de.
2025-06-28 17:31:47 -05:00

10 lines
190 B
Nix

{pkgs, ...}: {
environment.systemPackages = with pkgs; [
python3
python3Packages.pip
python3Packages.pygobject3
python3Packages.setuptools
python3Packages.wheel
];
}