1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-13 16:51:02 +00:00
ncc/modules/common/python.nix

10 lines
158 B
Nix

{ lib, pkgs, ... }: let
inherit (lib) attrValues;
in {
environment.systemPackages = attrValues {
inherit (pkgs)
python314
uv
;
};
}