no hypr folder + waybar cclock, nx_gcal_event

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-04-18 18:41:53 +02:00
parent 91fccbf390
commit 8b2d527c23
8 changed files with 317 additions and 53 deletions

18
home-modules/python.nix Normal file
View File

@@ -0,0 +1,18 @@
{ config, pkgs, ... }:
let
python-with-packages = pkgs.python3.withPackages (pp: with pp; [
ipython
pipdeptree
requests
google google-api-python-client google-auth-httplib2 google-auth-oauthlib
]);
in
{
home.packages = [
python-with-packages
];
home.sessionVariables = {
PYTHONPATH = "${python-with-packages}/${python-with-packages.sitePackages}";
};
}