12 lines
231 B
Nix
12 lines
231 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
options = {
|
|
machine.laptop = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = false;
|
|
example = true;
|
|
description = "Whether the current system is a laptop.";
|
|
};
|
|
};
|
|
} |