9 lines
165 B
Nix
9 lines
165 B
Nix
{ lib, ... }:
|
|
|
|
{
|
|
options.simulacrum = lib.mkOption {
|
|
description = "Whether we are in the Simulacrum.";
|
|
type = lib.types.bool;
|
|
default = false;
|
|
};
|
|
}
|