niksos/homes/jacek/gui/gtk/default.nix
2023-07-20 00:06:31 +02:00

42 lines
1.1 KiB
Nix

{
config,
inputs,
pkgs,
...
}: {
config = {
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha-Standard-Green-dark";
package = pkgs.catppuccin-gtk.override {
size = "standard";
accents = [ "green" ];
variant = "mocha";
tweaks = [ "normal" ];
};
};
iconTheme = {
name = "Papirus-Dark";
package = pkgs.catppuccin-papirus-folders.override {
accent = "green";
flavor = "mocha";
};
};
};
home = {
sessionVariables = {
GTK_THEME = "${config.gtk.theme.name}";
GTK_USE_PORTAL = "1";
};
pointerCursor = {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
gtk.enable = true;
x11.enable = true;
};
};
};
}