Files
ccl-nixos-dotfiles/modules/coding/langs/python.nix
2025-04-13 15:09:14 +08:00

22 lines
290 B
Nix

{
config,
lib,
pkgs,
...
}:
lib.my.makeHomePackageConfig {
inherit config pkgs;
packageName = "python3";
packagePath = [ "python3" ];
optionPath = [
"coding"
"langs"
"python"
];
extraConfig = {
my.home.home.packages = with pkgs; [
uv
];
};
}