summaryrefslogtreecommitdiff
path: root/meta/tools/languages/python/default.nix
blob: 84b15d41ff1e5eab4335c42cac73a586a3432884 (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs, ... }: {
  home.packages = with pkgs; [
    python312
    rye
  ];

  programs.poetry.enable = true;
}