2024-07-17 17:20:32 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
options = {
|
2024-07-18 04:08:27 +00:00
|
|
|
machine.laptop = lib.mkOption {
|
2024-07-17 17:20:32 +00:00
|
|
|
type = lib.types.bool;
|
|
|
|
default = false;
|
|
|
|
example = true;
|
|
|
|
description = "Whether the current system is a laptop.";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|