add ghostty

This commit is contained in:
kirbara 2025-12-05 09:19:30 +07:00
parent d6f8321ffa
commit c56e1e3d83
Signed by: exp
GPG key ID: D7E63AD0019E75D9
2 changed files with 18 additions and 1 deletions

View file

@ -0,0 +1,17 @@
{
flake-file.inputs = {
ghostty.url = "github:ghostty-org/ghostty";
};
den.aspects = {
ghostty = {
homeManager =
{ pkgs, inputs, ... }:
{
home.packages = [
inputs.ghostty.packages.${pkgs.stdenv.hostPlatform.system}.default
];
};
};
};
}