1
0
Fork 0
mirror of https://github.com/ryanccn/flake.git synced 2025-12-06 08:10:43 +01:00
flake/packages/default.nix
2025-10-19 11:02:48 +01:00

14 lines
315 B
Nix

# SPDX-FileCopyrightText: 2025 Ryan Cao <hello@ryanccn.dev>
#
# SPDX-License-Identifier: Apache-2.0
{
perSystem =
{ pkgs, ... }:
{
packages = {
helix-with-lsps = pkgs.callPackage ./helix-with-lsps.nix { };
ryan-mono-bin = pkgs.callPackage ./ryan-mono-bin.nix { };
};
};
}