infrastructure/home/desktop/gtk.nix

22 lines
322 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"];
2024-06-16 13:49:52 +00:00
cursor = {
enable = true;
accent = "dark";
};
2023-04-08 13:53:58 +00:00
};
};
}