diff options
Diffstat (limited to 'nix/modules/ports/default.nix')
-rw-r--r-- | nix/modules/ports/default.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/nix/modules/ports/default.nix b/nix/modules/ports/default.nix new file mode 100644 index 0000000..15507e2 --- /dev/null +++ b/nix/modules/ports/default.nix @@ -0,0 +1,10 @@ +{ lib, ... }: + +with lib; { + options = mkOption { + type = types.attrs; + default = false; + example = true; + description = "Whether to enable this cool module."; + }; +} |