From 7190f469384afc72a83cb356b5b6c33c68f9037c Mon Sep 17 00:00:00 2001 From: gmarmstrong Date: Sun, 10 Jun 2018 22:41:27 -0400 Subject: [PATCH] bash: fix shellAliases description The aliases aren't added to all users' shells. --- modules/programs/bash.nix | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix index 6adcbd942..830e832e1 100644 --- a/modules/programs/bash.nix +++ b/modules/programs/bash.nix @@ -84,8 +84,7 @@ in example = { ll = "ls -l"; ".." = "cd .."; }; description = '' An attribute set that maps aliases (the top level attribute names in - this option) to command strings or directly to build outputs. The - aliases are added to all users' shells. + this option) to command strings or directly to build outputs. ''; type = types.attrs; };