infrastructure/home/gtk/default.nix

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";
};
};
}