nixos/overlays/modifications/jujutsu.nix

6 lines
170 B
Nix
Raw Normal View History

{inputs, ...}: final: prev: let
2025-03-09 01:24:00 +08:00
inherit (final.stdenv.hostPlatform) system;
in {
jujutsu = inputs.jj.packages."${system}".jujutsu.overrideAttrs {doCheck = false;};
2025-03-09 01:24:00 +08:00
}