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