nixos/overlays/modifications/fix-zed-editor.nix

11 lines
221 B
Nix
Raw Normal View History

2025-03-25 19:20:36 +08:00
{ inputs, ... }:
final: prev:
let
inherit (final) stdenv;
inherit (stdenv.hostPlatform) system;
in
{
zed-editor =
inputs.nixpkgs-d056063028f6cbe9b99c3a4b52fdad99573db3ab.legacyPackages."${system}".zed-editor;
}