mirror of
https://github.com/RGBCube/ncc
synced 2026-01-13 16:51:02 +00:00
10 lines
158 B
Nix
10 lines
158 B
Nix
{ lib, pkgs, ... }: let
|
|
inherit (lib) attrValues;
|
|
in {
|
|
environment.systemPackages = attrValues {
|
|
inherit (pkgs)
|
|
python314
|
|
uv
|
|
;
|
|
};
|
|
}
|