mirror of
https://github.com/nix-community/home-manager
synced 2024-11-05 18:59:44 +01:00
40 lines
826 B
Nix
40 lines
826 B
Nix
|
{ config, lib, pkgs, ... }:
|
||
|
|
||
|
with lib;
|
||
|
|
||
|
let
|
||
|
|
||
|
cfg = config.qt;
|
||
|
dag = config.lib.dag;
|
||
|
|
||
|
in
|
||
|
|
||
|
{
|
||
|
meta.maintainers = [ maintainers.rycee ];
|
||
|
|
||
|
options = {
|
||
|
qt = {
|
||
|
enable = mkEnableOption "Qt 4 and 5 configuration";
|
||
|
|
||
|
useGtkTheme = mkOption {
|
||
|
type = types.bool;
|
||
|
default = false;
|
||
|
description = ''
|
||
|
Whether Qt 4 and 5 should be set up to use the GTK theme
|
||
|
settings.
|
||
|
'';
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
config = mkIf (cfg.enable && cfg.useGtkTheme) {
|
||
|
home.sessionVariables.QT_QPA_PLATFORMTHEME = "gtk2";
|
||
|
home.packages = [ pkgs.libsForQt5.qtstyleplugins ];
|
||
|
|
||
|
home.activation.useGtkThemeInQt4 = dag.entryAfter ["writeBoundary"] ''
|
||
|
$DRY_RUN_CMD ${pkgs.crudini}/bin/crudini $VERBOSE_ARG \
|
||
|
--set $HOME/.config/Trolltech.conf Qt style GTK+
|
||
|
'';
|
||
|
};
|
||
|
}
|