commit | b58e21429cc28d7d76ec27b8d80ae5102601f4b7 | [log] [tgz] |
---|---|---|
author | Skyler Grey <skyler3665@gmail.com> | Thu Jan 26 00:40:12 2023 +0000 |
committer | Skyler Grey <skyler3665@gmail.com> | Sun Feb 26 13:09:27 2023 +0000 |
tree | 7f7aa4039de143943f358a5d3635b2f714671a29 | |
parent | 345f12dda532c7b9ef51a4a826e5743545a67e30 [diff] |
Make traces work from an options perspective
diff --git a/modules/traces.nix b/modules/traces.nix new file mode 100644 index 0000000..27a6017 --- /dev/null +++ b/modules/traces.nix
@@ -0,0 +1,11 @@ +{ lib +, config +, ... +}: { + options.internal.traces = with lib; + mkOption { + type = types.listOf types.str; + default = [ ]; + description = "Options to trace (for debugging)"; + }; +}