1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-07-27 18:17:44 +00:00

python: fix typo

This commit is contained in:
RGBCube 2025-07-22 17:02:44 +03:00
parent 27a60aae67
commit b09a30c186
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -1,7 +1,7 @@
{ pkgs, ... }: let { pkgs, ... }: let
package = pkgs.python314; package = pkgs.python314;
in { in {
environmennt.variables = { environment.variables = {
UV_PYTHON_PREFERENCE = "system"; UV_PYTHON_PREFERENCE = "system";
UV_PYTHON = "${package}"; UV_PYTHON = "${package}";
}; };