Extract a gtk mixin
This commit is contained in:
parent
c7bfbcc965
commit
39392dcc5a
7 changed files with 23 additions and 41 deletions
22
modules/mixins/gtk.nix
Normal file
22
modules/mixins/gtk.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{
|
||||
home-manager.users.opdavies =
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
gtk = {
|
||||
enable = true;
|
||||
|
||||
theme = {
|
||||
name = "Arc-Dark";
|
||||
package = pkgs.arc-theme;
|
||||
};
|
||||
|
||||
iconTheme = {
|
||||
name = "Arc";
|
||||
package = pkgs.arc-icon-theme;
|
||||
};
|
||||
|
||||
gtk3.extraConfig.gtk-enable-animations = false;
|
||||
gtk4.extraConfig.gtk-enable-animations = false;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue