nixos-config/platform.nix
2023-01-07 20:52:23 -05:00

8 lines
169 B
Nix

{ lib, ... }:
{
options.platform = lib.mkOption {
description = "The platform to configure for";
type = lib.types.enum [ "desktop" "laptop" "mobile" ];
};
}