nixos-config/modules/home/all/ghostty.nix
Sridhar Ratnakumar 4dfaf3ab1f ghostty: set theme
2024-12-27 12:02:23 -05:00

15 lines
298 B
Nix

{ flake, pkgs, ... }:
{
imports = [
flake.inputs.ghostty-hm.homeModules.default
];
programs.ghostty = {
enable = true;
package = pkgs.ghostty;
settings = {
gtk-titlebar = false; # better on tiling wm
font-size = 10;
theme = "catppuccin-mocha";
};
};
}