mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 16:47:23 +08:00
12 lines
224 B
Nix
12 lines
224 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
package = pkgs.ghostty;
|
|
settings = {
|
|
gtk-titlebar = false; # better on tiling wm
|
|
font-size = 10;
|
|
theme = "catppuccin-mocha";
|
|
};
|
|
};
|
|
}
|