dotfiles/homes/x86_64-linux/christopher@cobalt/config/appearance.nix
Christopher Mühl 786af32daf
Publish my config
This is the result of ~100 commits to my NixOS config. Since I haven't
always used `agenix-rekey`, this is another initial commit so that none
of the secrets in my git history are leaked
2025-07-30 23:36:39 +02:00

33 lines
632 B
Nix

{pkgs, ...}: {
home.packages = with pkgs; [
lxappearance
];
gtk = {
enable = true;
iconTheme = {
name = "oomox-rose-pine";
package = pkgs.rose-pine-icon-theme;
};
theme = {
name = "rose-pine";
package = pkgs.rose-pine-gtk-theme;
};
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";
};
}