Personal Nix setup
0
fork

Configure Feed

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

More Expo updates

+14 -9
+3 -3
flake.lock
··· 491 491 }, 492 492 "nixpkgs": { 493 493 "locked": { 494 - "lastModified": 1736241350, 495 - "narHash": "sha256-CHd7yhaDigUuJyDeX0SADbTM9FXfiWaeNyY34FL1wQU=", 494 + "lastModified": 1737525964, 495 + "narHash": "sha256-3wFonKmNRWKq1himW9N3TllbeGIHFACI5vmLpk6moF8=", 496 496 "owner": "nixos", 497 497 "repo": "nixpkgs", 498 - "rev": "8c9fd3e564728e90829ee7dbac6edc972971cd0f", 498 + "rev": "5757bbb8bd7c0630a0cc4bb19c47e588db30b97c", 499 499 "type": "github" 500 500 }, 501 501 "original": {
-2
flake.nix
··· 85 85 inherit (inputs.language-servers.packages.${self.system}) 86 86 typescript-language-server 87 87 vscode-langservers-extracted; 88 - # https://github.com/NixOS/nixpkgs/issues/368501 89 - folly = super.folly.overrideAttrs { doCheck = false; }; 90 88 }) 91 89 ]; 92 90 in {
+9 -4
home/development/react-native.nix
··· 47 47 default = cfg.react-native.enable; 48 48 type = types.bool; 49 49 }; 50 + 51 + fastlane = mkOption { 52 + default = cfg.react-native.enable; 53 + type = types.bool; 54 + }; 50 55 }; 51 56 52 57 config = mkIf cfg.react-native.enable (mkMerge [ ··· 55 60 cocoapods = if helpers.isDarwin then (mkDefault true) else (mkForce false); 56 61 }; 57 62 58 - home.packages = with pkgs; mkIf cfg.react-native.maestro [ 63 + home.packages = with pkgs; [ ruby ] ++ optionals cfg.react-native.maestro [ 59 64 maestro 60 65 ]; 61 66 } 62 67 63 68 (helpers.mkIfDarwin { 64 - home.packages = with pkgs; mkIf cfg.react-native.cocoapods [ 65 - cocoapods 66 - ]; 69 + home.packages = with pkgs; [] 70 + ++ optionals cfg.react-native.cocoapods [ cocoapods ] 71 + ++ optionals cfg.react-native.fastlane [ fastlane ]; 67 72 }) 68 73 69 74 (mkIf cfg.react-native.android-sdk {
+2
modules/base/nix-config.nix
··· 29 29 "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" 30 30 ]; 31 31 trusted-users = [ "root" "@wheel" ]; 32 + # on Apple Silicon, Rosetta 2 allows for this 33 + extra-platforms = mkIf (helpers.system == "aarch64-darwin") [ helpers.system "x86_64-darwin" ]; 32 34 }; 33 35 34 36 optimise.automatic = true;