niksos/homes/jacek/gui/gtk.nix

43 lines
1.1 KiB
Nix
Raw Normal View History

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