Compare commits

..

No commits in common. "11156f282c97da75d69f568ce92c8b80f6553c78" and "17085b4a1b557ae12bdc9c1fb63cc0ff46c4d1ec" have entirely different histories.

2 changed files with 0 additions and 19 deletions

View File

@ -137,7 +137,6 @@ in
# Let Home Manager install and manage itself.
home-manager.enable = true;
fzf.enable = true;
zoxide.enable = true;
};
home = {
username = "moritz";

View File

@ -15,24 +15,6 @@ in
home-manager.users.moritz.programs.direnv = {
enable = true;
nix-direnv.enable = true;
stdlib = ''
layout_poetry() {
if [[ ! -f pyproject.toml ]]; then
log_error 'No pyproject.toml found. Use `poetry new` or `poetry init` to create one first.'
exit 2
fi
local VENV=$(poetry env info --path)
if [[ -z $VENV || ! -d $VENV/bin ]]; then
log_error 'No poetry virtual environment found. Use `poetry install` to create one first.'
exit 2
fi
export VIRTUAL_ENV=$VENV
export POETRY_ACTIVE=1
PATH_add "$VENV/bin"
}
'';
};
};
}