summaryrefslogtreecommitdiff
path: root/modules/options/nix.nix
blob: 63301bc8462b168014de2ae7a80b40e2c6b48fc3 (plain) (blame)
1
2
3
4
5
6
7
{ lib, ... }:
{
  options.modules.nix.extend = lib.options.mkOption {
    default = false;
    type = lib.types.bool;
  };
}