niksos/homes/jacek/gui/gtk/default.nix

24 lines
454 B
Nix
Raw Normal View History

2023-07-18 21:19:57 +02:00
{
config,
inputs,
pkgs,
...
}: {
config = {
gtk = {
enable = true;
theme = {
name = "Catppuccin-Mocha";
package = pkgs.catppuccin-gtk.override {
variant = "mocha";
};
};
};
home.sessionVariables = {
GTK_THEME = "${config.gtk.theme.name}";
GTK_USE_PORTAL = "1";
};
};
}