dotfiles/system.nix

12 lines
230 B
Nix
Raw Normal View History

{ config, lib, pkgs, ... }:
{
options = {
custom.laptop = lib.mkOption {
type = lib.types.bool;
default = false;
example = true;
description = "Whether the current system is a laptop.";
};
};
}