17 lines
324 B
Nix
17 lines
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
|
||
|
|
];
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|