summaryrefslogtreecommitdiff
path: root/users/seth/shell/bash.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/seth/shell/bash.nix')
-rw-r--r--users/seth/shell/bash.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/users/seth/shell/bash.nix b/users/seth/shell/bash.nix
index f086ec4..bdc2fe1 100644
--- a/users/seth/shell/bash.nix
+++ b/users/seth/shell/bash.nix
@@ -1,6 +1,9 @@
-{config, ...}: {
+{config, standalone, ...}: {
programs.bash = {
enable = true;
+ 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;