nixos-config/platform.nix

8 lines
136 B
Nix
Raw Normal View History

{ lib, ... }:
{
2023-01-07 20:52:23 -05:00
options.platform = lib.mkOption {
description = "The platform to configure for";
type = lib.types.str;
};
}