1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2026-01-19 19:51:11 +00:00

asdflkşasdffffkşldassf

This commit is contained in:
RGBCube 2025-10-16 22:42:49 +03:00
parent 6e76d72161
commit faa9abf5a8
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M
44 changed files with 1263 additions and 325 deletions

View file

@ -1,22 +1,18 @@
let
commonModule =
{
homeModules.python =
{ pkgs, ... }:
let
package = pkgs.python314;
in
{
environment.variables = {
environment.sessionVariables = {
UV_PYTHON_PREFERENCE = "system";
UV_PYTHON = "${package}";
};
environment.systemPackages = [
packages = [
package
pkgs.uv
];
};
in
{
nixosModules.python = commonModule;
darwinModules.python = commonModule;
}