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

i3: Fix escaping in documentation

In nix `${` is escaped like this `''${` and not like this `\${`
This commit is contained in:
leifhelm 2022-12-29 17:37:09 +01:00 committed by Jakob Leifhelm
parent cbacdaba3c
commit 079a33a015
No known key found for this signature in database
GPG Key ID: 6817AA0238100822

View File

@ -105,7 +105,7 @@ let
in lib.mkOptionDefault {
"''${modifier}+Return" = "exec i3-sensible-terminal";
"''${modifier}+Shift+q" = "kill";
"''${modifier}+d" = "exec \${pkgs.dmenu}/bin/dmenu_run";
"''${modifier}+d" = "exec ''${pkgs.dmenu}/bin/dmenu_run";
}
'';
};