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