dotfiles/homes/x86_64-linux/christopher@cobalt/config/appearance.nix
2025-11-17 01:01:46 +01:00

24 lines
462 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
rose-pine-cursor
lxappearance
];
gtk = {
enable = true;
cursorTheme = {
name = "BreezeX-RoséPine";
package = pkgs.rose-pine-cursor;
};
gtk3.extraConfig.gtk-application-prefer-dark-theme = 1;
gtk4.extraConfig.gtk-application-prefer-dark-theme = 1;
};
home.sessionVariables = {
GTK_USE_PORTAL = "1";
GTK_THEME = "rose-pine";
XCURSOR_SIZE = "32";
};
}