8 lines
176 B
Nix
8 lines
176 B
Nix
|
{ lib, ... }:
|
||
|
{
|
||
|
options.custom.platform = lib.mkOption {
|
||
|
description = "The platform to configure for";
|
||
|
type = lib.types.enum [ "desktop" "laptop" "mobile" ];
|
||
|
};
|
||
|
}
|