From 2fc1ff99a40fd84628c11ab8b0af18e8d451f608 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 6adcbd94..830e832e 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; };