1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-01 04:23:34 +02:00

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

View File

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