-
|
How do I write the nix expression correctly to get this in the niri config file: I don’t know how to insert repeat=false into an expression: |
Beta Was this translation helpful? Give feedback.
Answered by
BirdeeHub
Apr 6, 2026
Replies: 2 comments 1 reply
-
|
It is something like... |
Beta Was this translation helpful? Give feedback.
0 replies
-
"Mod+Space" = _: {
props.repeat = false;
content.toggle-overview = _: { };
};becomes "Mod+Space" "repeat"=false {
"toggle-overview"
}The props are on the When we need both a block and props, we need to provide a function |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
BirdeeHub
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
becomes
The props are on the
Mod+SpaceblockWhen we need both a block and props, we need to provide a function