33 lines
921 B
Nix
33 lines
921 B
Nix
{pkgs, ...}: {
|
|
home.pointerCursor = {
|
|
package = pkgs.bibata-cursors;
|
|
name = "Bibata-Modern-Ice";
|
|
size = 25;
|
|
x11.enable = true;
|
|
gtk.enable = true;
|
|
};
|
|
|
|
# gtk.cursorTheme.package = pkgs.bibata-cursors;
|
|
# gtk.cursorTheme.name = "Bibata-Modern-Ice";
|
|
# home.file.".icons/bibata".source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic";
|
|
# xdg.dataFile."icons/bibata".source = "${pkgs.bibata-cursors}/share/icons/Bibata-Modern-Classic";
|
|
gtk = {
|
|
enable = true;
|
|
theme.package = pkgs.adw-gtk3;
|
|
theme.name = "adw-gtk3-dark";
|
|
iconTheme.package = pkgs.papirus-icon-theme;
|
|
iconTheme.name = "Papirus";
|
|
};
|
|
|
|
qt = {
|
|
enable = true;
|
|
platformTheme = "gtk";
|
|
style.package = with pkgs; [adwaita-qt adwaita-qt6];
|
|
style.name = "adwaita-dark";
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
libsForQt5.qt5.qtquickcontrols2
|
|
libsForQt5.qt5.qtgraphicaleffects
|
|
];
|
|
}
|