tmux: fix shell example (#5361)

This commit is contained in:
Thomas Zeger
2025-02-26 09:21:11 -05:00
committed by GitHub
parent 87743e9383
commit 53c587d263

View File

@@ -284,7 +284,7 @@ in {
shell = mkOption {
default = defaultShell;
example = "\${pkgs.zsh}/bin/zsh";
example = literalExpression "${pkgs.zsh}/bin/zsh";
type = with types; nullOr str;
description = "Set the default-shell tmux variable.";
};