about summary refs log tree commit diff
path: root/nix
diff options
context:
space:
mode:
authorEmile <git@emile.space>2024-08-02 23:52:03 +0200
committerEmile <git@emile.space>2024-08-02 23:52:03 +0200
commit4b220f4c5802bca0c887a4e1e70e8dad091548e9 (patch)
treef0573eef6ed3198115bc8cc54d89aa365aeec03e /nix
parent4646ea5fb511acdeff0f3d2ea404622153bf2187 (diff)
ports
Diffstat (limited to 'nix')
-rw-r--r--nix/modules/ports/default.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/nix/modules/ports/default.nix b/nix/modules/ports/default.nix
index 15507e2..6f79635 100644
--- a/nix/modules/ports/default.nix
+++ b/nix/modules/ports/default.nix
@@ -1,10 +1,7 @@
 { lib, ... }: 
 
 with lib; {
-  options = mkOption {
-	  type = types.attrs;
-	  default = false;
-	  example = true;
-	  description = "Whether to enable this cool module.";
+  options.emile.ports = mkOption {
+    type = types.anything;
   };
 }