added NxACE (untested)

This commit is contained in:
Lennart J. Kurzweg (Nx2)
2024-05-04 12:10:42 +02:00
parent c202666c0d
commit 66ef004344
433 changed files with 462 additions and 51424 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, ... }:
{ config, pkgs, lib, user, ... }:
let
python-with-packages = pkgs.python3.withPackages (pp: with pp; [
ipython
@@ -7,6 +7,7 @@ let
google google-api-python-client google-auth-httplib2 google-auth-oauthlib
]);
in
lib.mkIf (user != "tv")
{
home.packages = [
python-with-packages
@@ -15,4 +16,4 @@ in
home.sessionVariables = {
PYTHONPATH = "${python-with-packages}/${python-with-packages.sitePackages}";
};
}
}