Personal Nix setup

Add maestro

Changed files
+9
home
development
+9
home/development/react-native.nix
···
default = cfg.react-native.enable;
type = types.bool;
};
};
config = mkIf cfg.react-native.enable (mkMerge [
···
modules.development.react-native = {
cocoapods = if helpers.isDarwin then (mkDefault true) else (mkForce false);
};
}
(helpers.mkIfDarwin {
···
default = cfg.react-native.enable;
type = types.bool;
};
+
+
maestro = mkOption {
+
default = cfg.react-native.enable;
+
type = types.bool;
+
};
};
config = mkIf cfg.react-native.enable (mkMerge [
···
modules.development.react-native = {
cocoapods = if helpers.isDarwin then (mkDefault true) else (mkForce false);
};
+
+
home.packages = with pkgs; mkIf cfg.react-native.maestro [
+
maestro
+
];
}
(helpers.mkIfDarwin {