mirror of
https://github.com/nix-community/home-manager
synced 2024-12-25 03:09:47 +01:00
i3: Fix escaping in documentation
In nix `${` is escaped like this `''${` and not like this `\${`
This commit is contained in:
parent
cbacdaba3c
commit
079a33a015
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ let
|
||||||
in lib.mkOptionDefault {
|
in lib.mkOptionDefault {
|
||||||
"''${modifier}+Return" = "exec i3-sensible-terminal";
|
"''${modifier}+Return" = "exec i3-sensible-terminal";
|
||||||
"''${modifier}+Shift+q" = "kill";
|
"''${modifier}+Shift+q" = "kill";
|
||||||
"''${modifier}+d" = "exec \${pkgs.dmenu}/bin/dmenu_run";
|
"''${modifier}+d" = "exec ''${pkgs.dmenu}/bin/dmenu_run";
|
||||||
}
|
}
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue