diff --git a/modules/targets/generic-linux.nix b/modules/targets/generic-linux.nix
index bdb27926..a2d4189f 100644
--- a/modules/targets/generic-linux.nix
+++ b/modules/targets/generic-linux.nix
@@ -7,11 +7,13 @@ let
   profileDirectory = config.home.profileDirectory;
 
 in {
-  options.targets.genericLinux.enable = mkEnableOption "" // {
-    description = ''
-      Whether to enable settings that make Home Manager work better on
-      GNU/Linux distributions other than NixOS.
-    '';
+  options.targets.genericLinux = {
+    enable = mkEnableOption "" // {
+      description = ''
+        Whether to enable settings that make Home Manager work better on
+        GNU/Linux distributions other than NixOS.
+      '';
+    };
   };
 
   config = mkIf config.targets.genericLinux.enable {