Files
dotfiles/home/modules/laptop.nix
2024-05-28 06:54:29 +05:30

10 lines
191 B
Nix

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