Co-authored-by: Matt Sturgeon <matt@sturgeon.me.uk> Co-authored-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Reviewed-by: Matt Sturgeon <matt@sturgeon.me.uk> Reviewed-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Approved-by: Matt Sturgeon <matt@sturgeon.me.uk> Approved-by: NAHO <90870942+trueNAHO@users.noreply.github.com> Approved-by: Daniel Thwaites <danth@danth.me>
9 lines
203 B
Nix
9 lines
203 B
Nix
{ lib, ... }:
|
|
{
|
|
perSystem.options.testbeds = lib.mkOption {
|
|
internal = true;
|
|
type = lib.types.lazyAttrsOf lib.types.package;
|
|
default = { };
|
|
description = "Testbeds for Stylix.";
|
|
};
|
|
}
|