Kiana Sheibani
f940ad0218
There's no point in being restrictive here if we want to make it easier to add more platforms in the future.
8 lines
136 B
Nix
8 lines
136 B
Nix
{ lib, ... }:
|
|
{
|
|
options.platform = lib.mkOption {
|
|
description = "The platform to configure for";
|
|
type = lib.types.str;
|
|
};
|
|
}
|