nixos/home/gui/home.nix

26 lines
439 B
Nix

{ pkgs
, lib
, config
, ... }: with lib; mkIf config.passthrough.gui {
# cursor theme
home.pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
# gtk theme
gtk.theme = {
package = pkgs.whitesur-gtk-theme;
name = "WhiteSur-Dark";
};
# gtk icons
gtk.iconTheme = {
package = pkgs.whitesur-icon-theme;
name = "WhiteSur-dark";
};
gtk.enable = true;
}