1
1
Fork 0
nixos/options/custom/settings/qt.nix

18 lines
305 B
Nix
Raw Normal View History

{
config,
lib,
...
}:
with lib; let
cfg = config.custom.settings.qt;
in {
options.custom.settings.qt.enable = mkOption {default = false;};
config.home-manager.users.${config.custom.username} = mkIf cfg.enable {
qt = {
enable = true;
platformTheme.name = "gtk3";
};
};
}