remove ghostty from flake inputs

This commit is contained in:
ulic-youthlic 2025-05-19 01:35:04 +08:00
parent c1bf23dae9
commit 0fb6afde77
Signed by: youthlic
GPG key ID: 63E86C3C14A0D721
3 changed files with 0 additions and 17 deletions

View file

@ -58,16 +58,6 @@
repo = "nixos-cosmic";
};
ghostty = {
type = "github";
owner = "ghostty-org";
repo = "ghostty";
inputs = {
nixpkgs-unstable.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
nixos-hardware = {
type = "github";
owner = "NixOS";

View file

@ -3,7 +3,6 @@
in
[
./niri.nix
./ghostty.nix
./juicity.nix
./dae.nix
./jujutsu.nix

View file

@ -1,6 +0,0 @@
{inputs, ...}: final: prev: let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in {
ghostty = inputs.ghostty.packages."${system}".default;
}