1
0
Fork 0
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:
Thomas Zeger 2025-02-26 09:21:11 -05:00 committed by GitHub
parent 87743e9383
commit 53c587d263
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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.";
};