10 lines
187 B
Nix
10 lines
187 B
Nix
{ lib, ... }:
|
|
{
|
|
options.isLaptop = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
example = true;
|
|
description = "Whether this device is a laptop or not";
|
|
};
|
|
}
|