aboutsummaryrefslogtreecommitdiff
path: root/.config/nixpkgs/shells
diff options
context:
space:
mode:
authortdro <tdro@users.noreply.github.com>2020-06-01 21:06:58 -0400
committertdro <tdro@users.noreply.github.com>2020-06-01 21:16:10 -0400
commit625b6c0fb42c6c38d9f273a7fe0e0a6c7c654f1c (patch)
tree7100c988eb1466b3ed7d8ffbd053dd944396846f /.config/nixpkgs/shells
parent587f089d4209b6a1cd3cd7cbc690793e877a5008 (diff)
downloaddotfiles-625b6c0fb42c6c38d9f273a7fe0e0a6c7c654f1c.tar.gz
dotfiles-625b6c0fb42c6c38d9f273a7fe0e0a6c7c654f1c.tar.bz2
dotfiles-625b6c0fb42c6c38d9f273a7fe0e0a6c7c654f1c.zip
.config/nixpkgs/shells/ansible-mitogen: PS1 directory basename
Diffstat (limited to '.config/nixpkgs/shells')
-rw-r--r--.config/nixpkgs/shells/ansible-mitogen.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/.config/nixpkgs/shells/ansible-mitogen.nix b/.config/nixpkgs/shells/ansible-mitogen.nix
index e5118b0..66ce6b7 100644
--- a/.config/nixpkgs/shells/ansible-mitogen.nix
+++ b/.config/nixpkgs/shells/ansible-mitogen.nix
@@ -1,7 +1,6 @@
with import <nixpkgs> {};
mkShell {
-
name = "ansible";
buildInputs = with python38.pkgs; [ pip ];
shellHook = ''
@@ -12,6 +11,6 @@ mkShell {
python -m pip install mitogen
export ANSIBLE_STRATEGY_PLUGINS=$virtualenvs/ansible-mitogen/lib/python3.8/site-packages/ansible_mitogen/plugins
export ANSIBLE_STRATEGY=mitogen_linear
- export PS1='(ansible-mitogen) '
+ export PS1='(ansible-mitogen) \W \$ '
'';
}