1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-14 01:01:04 +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
;
};
}