blob: 665a542e49a1f5c32155e9b1687b0f2a3c50d70d [file] [log] [blame]
Skyler Grey6c1518a2023-02-19 23:46:28 +00001{ pkgs, ... }: {
2 home.home.packages = [
3 (pkgs.python3.withPackages
4 (pyPkgs: with pyPkgs; [
5 rope
6 ]))
7 ];
8}