mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-08 19:46:05 +01:00
tmux: fix shell example (#5361)
This commit is contained in:
parent
87743e9383
commit
53c587d263
1 changed files with 1 additions and 1 deletions
|
|
@ -284,7 +284,7 @@ in {
|
||||||
|
|
||||||
shell = mkOption {
|
shell = mkOption {
|
||||||
default = defaultShell;
|
default = defaultShell;
|
||||||
example = "\${pkgs.zsh}/bin/zsh";
|
example = literalExpression "${pkgs.zsh}/bin/zsh";
|
||||||
type = with types; nullOr str;
|
type = with types; nullOr str;
|
||||||
description = "Set the default-shell tmux variable.";
|
description = "Set the default-shell tmux variable.";
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue