11.stylix/flake/options/testbeds.nix
0xda157 adc6506100
ci: add buildbot support (#1985)
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>
2025-11-22 20:59:01 +00:00

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.";
};
}