1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-11-08 11:36:05 +01:00

gtk2: fix missing force option (#7437)

Missed during migration

Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
This commit is contained in:
Austin Horstman 2025-07-11 15:05:42 -05:00 committed by GitHub
parent b8b7e5ec35
commit 03bf1bd8d6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -35,6 +35,8 @@ in
default = true;
};
force = lib.mkEnableOption "GTK 2 config force overwrite without creating a backup";
font = mkOption {
type = types.nullOr lib.hm.types.fontType;
default = cfg.font;
@ -115,6 +117,8 @@ in
''
${settingsText}${cfg2.extraConfig}
'';
inherit (cfg2) force;
};
home.sessionVariables.GTK2_RC_FILES = cfg2.configLocation;
};