22 lines
322 B
Nix
22 lines
322 B
Nix
{pkgs, ...}: {
|
|
gtk = {
|
|
enable = true;
|
|
|
|
font = {
|
|
name = "Inter";
|
|
package = pkgs.inter;
|
|
size = 10;
|
|
};
|
|
|
|
catppuccin = {
|
|
enable = true;
|
|
size = "compact";
|
|
tweaks = ["rimless" "normal"];
|
|
cursor = {
|
|
enable = true;
|
|
accent = "dark";
|
|
};
|
|
};
|
|
};
|
|
}
|