nixos-config/system.nix
Jan Bulthuis 1b4f8911fd Progress
2024-07-18 06:08:27 +02:00

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.";
};
};
}