infrastructure/home/gtk/default.nix

19 lines
278 B
Nix
Raw Normal View History

2023-12-15 15:18:36 +00:00
{pkgs, ...}: {
2023-04-08 13:53:58 +00:00
gtk = {
enable = true;
2023-04-08 13:53:58 +00:00
font = {
name = "Inter";
package = pkgs.inter;
size = 10;
};
2024-06-15 14:39:17 +00:00
catppuccin = {
enable = true;
size = "compact";
tweaks = ["rimless" "normal"];
cursor.accent = "dark";
2023-04-08 13:53:58 +00:00
};
};
}