Compare commits

...

2 commits

Author SHA1 Message Date
7fd3ac7b9a
remove jj from flake inputs 2025-05-20 00:00:33 +08:00
0fb6afde77
remove ghostty from flake inputs 2025-05-20 00:00:26 +08:00
4 changed files with 0 additions and 33 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";
@ -150,16 +140,6 @@
utils.follows = "flake-utils";
};
};
jj = {
type = "github";
owner = "jj-vcs";
repo = "jj";
inputs = {
nixpkgs.follows = "nixpkgs";
flake-utils.follows = "flake-utils";
};
};
};
outputs = {
self,

View file

@ -3,10 +3,8 @@
in
[
./niri.nix
./ghostty.nix
./juicity.nix
./dae.nix
./jujutsu.nix
./spotifyx.nix
./radicle-explorer.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;
}

View file

@ -1,5 +0,0 @@
{inputs, ...}: final: prev: let
inherit (final.stdenv.hostPlatform) system;
in {
jujutsu = inputs.jj.packages."${system}".jujutsu.overrideAttrs {doCheck = false;};
}