flakes/users/rin/theming.nix

26 lines
489 B
Nix
Raw Permalink Normal View History

{ config, pkgs, ... }: {
gtk = {
enable = true;
2021-06-04 16:17:02 +07:00
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 = {
2021-05-27 15:49:40 +07:00
name = "Materia-dark";
package = pkgs.materia-theme;
};
};
2021-05-27 15:49:40 +07:00
xsession.pointerCursor = {
package = pkgs.yaru-theme;
name = "Yaru";
size = 16;
};
}