infra/module/aspect/software/terminal-emulator/ghostty.nix

17 lines
324 B
Nix
Raw Normal View History

2025-12-05 09:19:30 +07:00
{
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
];
};
};
};
}