Files
dotfiles/home/common/laptop.nix
2024-06-01 16:57:00 +05:30

10 lines
187 B
Nix

{ lib, ... }:
{
options.isLaptop = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether this device is a laptop or not";
};
}