imladris/configs/ghostty.nix

17 lines
281 B
Nix

{ inputs, pkgs, ... }:
{
programs.ghostty = {
enable = true;
settings = {
theme = "gruvbox-material";
cursor-style = "block";
font-family = "Brass Mono";
font-size = 20;
font-thicken = true;
window-decoration = "none";
};
};
}