mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
18 lines
424 B
Nix
18 lines
424 B
Nix
{lib, ...}: let
|
|
inherit (lib) mkOption types literalExpression mdDoc;
|
|
in {
|
|
imports = [./nim.nix ./tex.nix ./misc.nix ./node.nix ./python.nix];
|
|
options.oizys.languages = mkOption {
|
|
type = with types; (listOf str);
|
|
description = lib.mdDoc ''
|
|
List of programming languages to enable.
|
|
'';
|
|
default = [];
|
|
example = literalExpression ''
|
|
[
|
|
"python"
|
|
"nim"
|
|
]
|
|
'';
|
|
};
|
|
}
|