Move gtk configuration
All checks were successful
/ check (push) Successful in 1m38s

This commit is contained in:
Oliver Davies 2025-07-28 01:39:38 +01:00
parent aac84ce5b5
commit 3a6a2f0bcc
7 changed files with 29 additions and 39 deletions

View file

@ -0,0 +1,6 @@
{
flake.modules.homeManager.gui.gtk = {
gtk3.extraConfig.gtk-enable-animations = false;
gtk4.extraConfig.gtk-enable-animations = false;
};
}

3
modules2/gtk/enable.nix Normal file
View file

@ -0,0 +1,3 @@
{
flake.modules.homeManager.gui.gtk.enable = true;
}

View file

@ -0,0 +1,10 @@
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
gtk.iconTheme = {
name = "Arc";
package = pkgs.arc-icon-theme;
};
};
}

10
modules2/gtk/theme.nix Normal file
View file

@ -0,0 +1,10 @@
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
gtk.theme = {
name = "Arc-Dark";
package = pkgs.arc-theme;
};
};
}