flake/home/ghostty.nix
2025-07-12 21:36:18 +03:00

15 lines
221 B
Nix

{
lib,
config,
...
}:
{
options.enableGhostty = lib.mkEnableOption "Ghostty terminal emulator";
config = {
programs.ghostty = {
enable = config.enableGhostty;
settings = {
};
};
};
}