1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

Fix wrongly escaping symbol

This commit is contained in:
Thomas Zeger 2024-05-01 00:49:06 -04:00 committed by GitHub
parent 6d3b6dc922
commit de9bb8e0a0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -274,7 +274,7 @@ in {
shell = mkOption { shell = mkOption {
default = defaultShell; default = defaultShell;
example = "\${pkgs.zsh}/bin/zsh"; example = "/${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.";
}; };