mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
21 lines
377 B
Nix
21 lines
377 B
Nix
{pkgs, ...}: {
|
|
gtk = {
|
|
enable = true;
|
|
iconTheme = {
|
|
name = "Numix-Square";
|
|
package = pkgs.numix-icon-theme-square;
|
|
};
|
|
|
|
theme = {
|
|
name = "Arc-Dark";
|
|
package = pkgs.arc-theme;
|
|
};
|
|
|
|
cursorTheme = {
|
|
name = "Numix-Cursor";
|
|
package = pkgs.numix-cursor-theme;
|
|
};
|
|
};
|
|
|
|
home.sessionVariables.GTK_THEME = "Arc-Dark";
|
|
}
|