diff options
Diffstat (limited to 'users/seth/shell/bash.nix')
| -rw-r--r-- | users/seth/shell/bash.nix | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/users/seth/shell/bash.nix b/users/seth/shell/bash.nix index bdc2fe1..b3a1257 100644 --- a/users/seth/shell/bash.nix +++ b/users/seth/shell/bash.nix @@ -1,9 +1,16 @@ -{config, standalone, ...}: { +{ + config, + standalone, + ... +}: { programs.bash = { enable = true; - bashrcExtra = if standalone then '' - . ${config.home.homeDirectory}/.nix-profile/etc/profile.d/nix.sh - '' else ''''; + bashrcExtra = + if standalone + then '' + . ${config.home.homeDirectory}/.nix-profile/etc/profile.d/nix.sh + '' + else ''''; historyFile = "${config.xdg.stateHome}/bash/history"; historyFileSize = 1000; historySize = 100; |
