mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 07:04:17 +00:00
fastfetch: update example for JsonConfig settings
fastfetch: update example for JsonConfig settings
Using the present version of the example, trows an error:
JsonConfig Error: `display.binaryPrefix` has been renamed to
`display.size.binaryPrefix`. Sorry for another break change.
It occurs because of change in fastfetch 2.19 of JsonConfig - moving
`display.binaryPrefix` to `display.size.binaryPrefix`
To not confuse the users, this commit changes the example to fit
current standard
See <b3ac696312/CHANGELOG.md (L85)
>
This commit is contained in:
parent
a6c743980e
commit
b3d5ea65d8
1 changed files with 3 additions and 1 deletions
|
@ -26,7 +26,9 @@ in {
|
|||
};
|
||||
};
|
||||
display = {
|
||||
binaryPrefix = "si";
|
||||
size = {
|
||||
binaryPrefix = "si";
|
||||
};
|
||||
color = "blue";
|
||||
separator = " ";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue