Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
mangohud: make
false
values actually disable
Currently the following, will produces `some_opt=false` in the rendered config: ```nix programs.mangohud.settings = { some_opt = false; }; ``` With the intention being to disable the option, this would be incorrect, as per the following stated at: <https://github.com/flightlessmango/MangoHud/blob/0575c8eb1f61692a2e5ca152c4f8ed70bef55ee2/data/MangoHud.conf#L3C5-L4C1> > Use some_parameter=0 to disable a parameter (only works with on/off > parameters) As such, I changed the rendering to follow this. This will be output instead: `some_opt=0`
- Loading branch information