infrastructure/home/desktop/gtk.nix
2024-06-15 17:17:27 +02:00

19 lines
278 B
Nix

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