infra/module/aspect/software/terminal-emulator/ghostty.nix
2025-12-05 09:19:30 +07:00

17 lines
No EOL
324 B
Nix

{
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
];
};
};
};
}