flake/home/ghostty.nix
2025-08-07 17:08:53 +03:00

19 lines
329 B
Nix

{
lib,
config,
pkgs,
...
}:
{
options.enableGhostty = lib.mkEnableOption "Ghostty terminal emulator";
config = {
programs.ghostty = {
enable = config.enableGhostty;
settings = {
maximize = true;
window-decoration = false;
command = lib.getExe pkgs.tmux;
};
};
};
}