flakes/users/rin/theming.nix
2021-06-04 16:32:43 +07:00

25 lines
489 B
Nix

{ config, pkgs, ... }: {
gtk = {
enable = true;
gtk2.configLocation = "${config.xdg.configHome}/gtk-2.0/gtkrc";
font = {
package = pkgs.open-sans;
name = "Open Sans";
size = 11;
};
iconTheme = {
package = pkgs.yaru-theme;
name = "Yaru";
};
theme = {
name = "Materia-dark";
package = pkgs.materia-theme;
};
};
xsession.pointerCursor = {
package = pkgs.yaru-theme;
name = "Yaru";
size = 16;
};
}