Personal Nix setup
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add maestro

+9
+9
home/development/react-native.nix
··· 42 42 default = cfg.react-native.enable; 43 43 type = types.bool; 44 44 }; 45 + 46 + maestro = mkOption { 47 + default = cfg.react-native.enable; 48 + type = types.bool; 49 + }; 45 50 }; 46 51 47 52 config = mkIf cfg.react-native.enable (mkMerge [ ··· 49 54 modules.development.react-native = { 50 55 cocoapods = if helpers.isDarwin then (mkDefault true) else (mkForce false); 51 56 }; 57 + 58 + home.packages = with pkgs; mkIf cfg.react-native.maestro [ 59 + maestro 60 + ]; 52 61 } 53 62 54 63 (helpers.mkIfDarwin {