clan-core/nixosModules/clanCore/options.nix

13 lines
345 B
Nix
Raw Normal View History

2023-09-22 12:29:25 +00:00
{ pkgs, options, lib, ... }: {
options.clanCore.optionsNix = lib.mkOption {
type = lib.types.raw;
internal = true;
readOnly = true;
default = (pkgs.nixosOptionsDoc { inherit options; }).optionsNix;
defaultText = "optionsNix";
description = ''
This is to export nixos options used for `clan config`
'';
};
}