fix: extraconfig is already inside [Settings]

With the current config I get something like:
```
[Settings]
Settings=gtk-application-prefer-dark-theme=1
```

This change should fix it and produce:
```
[Settings]
gtk-application-prefer-dark-theme=1
```
in ~/.config/gtk-4.0/settings.ini
This commit is contained in:
Clément Patout 2024-01-22 12:10:48 +00:00
parent c094043bad
commit 2489bf5e4c

View File

@ -31,14 +31,10 @@
package = pkgs.bibata-cursors;
};
gtk3.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
gtk-application-prefer-dark-theme=1;
};
gtk4.extraConfig = {
Settings = ''
gtk-application-prefer-dark-theme=1
'';
gtk-application-prefer-dark-theme=1;
};
};