remove jj from flake inputs

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

View file

@ -140,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

@ -5,7 +5,6 @@ in
./niri.nix
./juicity.nix
./dae.nix
./jujutsu.nix
./spotifyx.nix
./radicle-explorer.nix
]

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