39 lines
608 B
Nix
39 lines
608 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
let
|
|
cursorName = "catppuccin-macchiato-lavender-cursors";
|
|
in
|
|
{
|
|
gtk = {
|
|
enable = true;
|
|
|
|
cursorTheme = {
|
|
name = cursorName;
|
|
package = pkgs.catppuccin-cursors.macchiatoLavender;
|
|
};
|
|
|
|
iconTheme = {
|
|
name = "Papirus-Dark";
|
|
package = pkgs.papirus-icon-theme;
|
|
};
|
|
|
|
gtk3 = {
|
|
extraConfig = {
|
|
gtk-application-prefer-dark-theme = true;
|
|
};
|
|
};
|
|
|
|
gtk4 = {
|
|
extraConfig = {
|
|
gtk-application-prefer-dark-theme = true;
|
|
};
|
|
};
|
|
};
|
|
|
|
home.packages = with pkgs; [
|
|
gsettings-desktop-schemas
|
|
glib
|
|
];
|
|
}
|