blob: 1f0f064be5c3341e5be4fd452204e6939dca85e4 [file] [log] [blame]
Skyler Grey6c1518a2023-02-19 23:46:28 +00001{ pkgs, ... }: {
Skyler Grey152228b2023-02-13 08:01:00 +00002 home.home = {
3 packages = [
4 (pkgs.python3.withPackages
5 (pyPkgs: with pyPkgs; [
6 rope
7 ]))
8 ];
9 sessionVariables = {
10 PYTHONPATH = "${pkgs.apparmor-utils}/lib/python3.10/site-packages:${pkgs.libapparmor.python}/lib/python3.10/site-packages";
11 };
12 };
Skyler Grey6c1518a2023-02-19 23:46:28 +000013}