mirror of
https://github.com/nix-community/flakelight.git
synced 2024-11-22 07:23:11 +01:00
20 lines
485 B
Nix
20 lines
485 B
Nix
# flakelight -- Framework for simplifying flake setup
|
|
# Copyright (C) 2023 Archit Gupta <archit@accelbread.com>
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
{ config, lib, genSystems, ... }:
|
|
let
|
|
inherit (lib) mkIf mkOption;
|
|
inherit (lib.types) functionTo nullOr pkgs;
|
|
in
|
|
{
|
|
options.legacyPackages = mkOption {
|
|
type = nullOr (functionTo pkgs);
|
|
default = null;
|
|
};
|
|
|
|
config.outputs = mkIf (config.legacyPackages != null) {
|
|
legacyPackages = genSystems config.legacyPackages;
|
|
};
|
|
}
|