flake/home/ghostty.nix
2025-06-07 16:19:00 +03:00

14 lines
221 B
Nix

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