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