t14_legacy_config/home/gui/gtk.nix

15 lines
283 B
Nix
Raw Normal View History

2022-11-30 04:29:21 +01:00
{ config, lib, pkgs, ... } :
with lib;
let
cfg = config.local.gui.gtk;
in
{
options.local.gui.gtk.enable = mkEnableOption "GTK related programs";
config = mkIf cfg.enable {
home.packages = with pkgs; [
gruvbox-dark-icons-gtk
libsForQt5.breeze-gtk
];
2022-11-30 04:47:43 +01:00
};
2022-11-30 04:29:21 +01:00
}