clan-core/nixosModules/clanCore/options.nix
Jörg Thalheim 51e8da2a74
All checks were successful
checks-impure / test (pull_request) Successful in 8s
checks / test (pull_request) Successful in 23s
config: get rid of impure eval
2023-09-22 14:32:38 +02:00

13 lines
345 B
Nix

{ 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`
'';
};
}