gtk2: add force option

Add a gtk.gtk2.force option so that users can force overwrite the
configuration file if other applications (e.g. KDE Plasma) updates
them.
This commit is contained in:
ErrorNoInternet 2024-04-13 23:03:34 +08:00
parent 40ab43ae98
commit dae1d1a875
No known key found for this signature in database
GPG Key ID: 2486BFB7B1E6A4A3
1 changed files with 14 additions and 3 deletions

View File

@ -139,6 +139,14 @@ in {
};
gtk2 = {
force = mkOption {
type = types.bool;
default = false;
description = ''
Whether to force replace the existing configuration.
'';
};
extraConfig = mkOption {
type = types.lines;
default = "";
@ -269,9 +277,12 @@ in {
cfg.cursorTheme
];
home.file.${cfg2.configLocation}.text =
concatMapStrings (l: l + "\n") (mapAttrsToList formatGtk2Option gtkIni)
+ cfg2.extraConfig + "\n";
home.file.${cfg2.configLocation} = {
force = cfg2.force;
text =
concatMapStrings (l: l + "\n") (mapAttrsToList formatGtk2Option gtkIni)
+ cfg2.extraConfig + "\n";
};
home.sessionVariables.GTK2_RC_FILES = cfg2.configLocation;