mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
Fix wrongly escaping symbol
This commit is contained in:
parent
6d3b6dc922
commit
de9bb8e0a0
1 changed files with 1 additions and 1 deletions
|
@ -274,7 +274,7 @@ in {
|
|||
|
||||
shell = mkOption {
|
||||
default = defaultShell;
|
||||
example = "\${pkgs.zsh}/bin/zsh";
|
||||
example = "/${pkgs.zsh}/bin/zsh";
|
||||
type = with types; nullOr str;
|
||||
description = "Set the default-shell tmux variable.";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue