mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 12:29:19 -08:00
19 lines
330 B
Nix
19 lines
330 B
Nix
{pkgs, ...}: {
|
|
gtk = {
|
|
enable = false;
|
|
iconTheme = {
|
|
name = "Numix-Square-Light";
|
|
package = pkgs.numix-icon-theme-square;
|
|
};
|
|
|
|
theme = {
|
|
name = "Arc";
|
|
package = pkgs.arc-theme;
|
|
};
|
|
|
|
cursorTheme = {
|
|
name = "Numix-Cursor";
|
|
package = pkgs.numix-cursor-theme;
|
|
};
|
|
};
|
|
}
|