Skip to content

Commit

Permalink
Add python keyring variable
Browse files Browse the repository at this point in the history
  • Loading branch information
arunoruto committed Jun 28, 2024
1 parent cf62d7b commit 2d5c5f2
Showing 1 changed file with 13 additions and 6 deletions.
19 changes: 13 additions & 6 deletions home-manager/server/programs/python.nix
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,17 @@
# )
];
in {
home.packages = with pkgs; [
(python3.withPackages packages)
poetry
mkdocs
#pkgs.streamlit
];
home = {
packages = with pkgs; [
(python3.withPackages packages)
poetry
mkdocs
#pkgs.streamlit
];

sessionVariables = {
# https://github.com/python-poetry/poetry/issues/8623#issuecomment-1793624371
PYTHON_KEYRING_BACKEND = "keyring.backends.null.Keyring";
};
};
}

0 comments on commit 2d5c5f2

Please sign in to comment.