Skip to content

Instantly share code, notes, and snippets.

@IQubic

IQubic/theme.nix Secret

Created April 19, 2024 08:12
Show Gist options
  • Save IQubic/562ecefaf272c729135426f4ee43d7c1 to your computer and use it in GitHub Desktop.
Save IQubic/562ecefaf272c729135426f4ee43d7c1 to your computer and use it in GitHub Desktop.
theme.nix
{ config, pkgs, ... }:
{
catppuccin = {
flavour = "mocha";
accent = "blue";
};
gtk = {
enable = true;
catppuccin = {
enable = true;
cursor = {
enable = true;
flavour = "mocha";
accent = "sapphire";
};
};
cursorTheme.size = 48;
};
qt = {
enable = true;
platformTheme.name = "qtct";
style.name = "kvantum";
};
home.pointerCursor = {
x11.enable = true;
gtk.enable = true;
package = pkgs.catppuccin-cursors.mochaSapphire;
name = "Catppuccin-Mocha-Sapphire-Cursors";
size = 48;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment