mirror of
https://github.com/ryanccn/flake.git
synced 2025-12-06 08:10:43 +01:00
14 lines
315 B
Nix
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 { };
|
|
};
|
|
};
|
|
}
|