19 lines
329 B
Nix
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;
|
|
};
|
|
};
|
|
};
|
|
}
|