dotfiles/nix/modules/home-manager/features/desktop/gtk.nix

32 lines
507 B
Nix
Raw Permalink Normal View History

{
config,
lib,
pkgs,
...
}:
2024-12-10 21:40:33 +00:00
with lib;
{
2024-12-10 21:40:33 +00:00
options.features.desktop.gtk.enable = mkEnableOption "Enable gtk";
2024-12-10 21:40:33 +00:00
config = mkIf config.features.desktop.gtk.enable {
gtk = {
enable = true;
theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
iconTheme = {
name = "Arc";
package = pkgs.arc-icon-theme;
};
2024-12-08 22:41:55 +00:00
gtk3.extraConfig.gtk-enable-animations = false;
gtk4.extraConfig.gtk-enable-animations = false;
};
};
}