dotfiles/system.nix

12 lines
231 B
Nix
Raw Normal View History

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