nixos/home/gui/home.nix

30 lines
507 B
Nix
Raw Normal View History

2024-01-03 15:29:21 +08:00
{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
2024-01-03 16:29:51 +08:00
# cursor theme
home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
2024-01-03 16:38:30 +08:00
size = 24;
};
# gtk theme
gtk.theme = {
package = pkgs.whitesur-gtk-theme;
name = "WhiteSur-Dark";
2024-01-03 16:29:51 +08:00
};
2024-01-03 16:38:30 +08:00
# gtk icons
gtk.iconTheme = {
package = pkgs.whitesur-icon-theme;
name = "WhiteSur-dark";
};
2024-01-07 14:47:25 +08:00
# unify qt theme
qt.platformTheme = "gtk";
2024-01-03 16:38:30 +08:00
gtk.enable = true;
2024-01-07 14:47:25 +08:00
qt.enable = true;
2024-01-03 15:29:21 +08:00
}