From 8a2bf21cee1a59e2e47c7851bd93f98ef734da0a Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 7 Jan 2018 15:04:57 +0100 Subject: [PATCH] bash: reword option descriptions --- modules/programs/bash.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/modules/programs/bash.nix b/modules/programs/bash.nix index dce7969f..f9ad4749 100644 --- a/modules/programs/bash.nix +++ b/modules/programs/bash.nix @@ -93,13 +93,19 @@ in profileExtra = mkOption { default = ""; type = types.lines; - description = "Extra commands that should be added to .profile."; + description = '' + Extra commands that should be run when initializing a login + shell. + ''; }; initExtra = mkOption { default = ""; type = types.lines; - description = "Extra commands that should be added to .bashrc."; + description = '' + Extra commands that should be run when initializing an + interactive shell. + ''; }; }; };