mirror of
https://github.com/srid/nixos-config.git
synced 2026-02-04 03:53:35 +08:00
15 lines
298 B
Nix
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";
|
|
};
|
|
};
|
|
}
|