feat: add ghostty

This commit is contained in:
Moritz Böhme 2024-10-25 07:35:36 +02:00
parent 80f92962a2
commit ffab7cedc4
No known key found for this signature in database
GPG key ID: 970C6E89EB0547A9
6 changed files with 183 additions and 18 deletions

View file

@ -0,0 +1,13 @@
{ lib
, ...
}:
with lib;
{
options.my.terminal = {
package = mkOption {
type = types.package;
apply = lib.getExe;
};
};
}