summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/environment/default.nix11
1 files changed, 5 insertions, 6 deletions
diff --git a/modules/environment/default.nix b/modules/environment/default.nix
index 00d58c0..994c77a 100644
--- a/modules/environment/default.nix
+++ b/modules/environment/default.nix
@@ -18,6 +18,11 @@ in
{
imports = [
(mkRenamedOptionModule ["environment" "postBuild"] ["environment" "extraSetup"])
+ (mkRemovedOptionModule [ "environment" "loginShell" ] ''
+ This option was only used to change the default command in tmux.
+
+ This has been removed in favour of changing the default command or default shell in tmux directly.
+ '')
];
options = {
@@ -74,12 +79,6 @@ in
'';
};
- environment.loginShell = mkOption {
- type = types.str;
- default = "$SHELL -l";
- description = "Configure default login shell.";
- };
-
environment.variables = mkOption {
type = types.attrsOf (types.either types.str (types.listOf types.str));
default = {};