Personal Nix setup
0
fork

Configure Feed

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

Remove npmrc

+1 -13
-5
home/development/encrypt/npmrc.age
··· 1 - age-encryption.org/v1 2 - -> ssh-ed25519 QwbpPw bp7vQmT8/j8LB/zQfeNl4Gef0a1xSOipA+kqr+tBriI 3 - /tpTyAOOi74/Vve7IW+k/pfZZKSC4sJKB9K77HLMgh4 4 - --- 3vQXFGwTbeJjpsY6dBnN9AXa4epTyHvG5o9bZAoWhZ0 5 - �6���Ԅ^��R�|�ƞuk�|��/�/*���{bZ�G���ؤ9�a���JyU��쵙����aN΄4���[����B��D6��[V{-Ӣ��5܋�=����M�O�@3A��:�vtp�=�����0�+��F�ux@�]�,nt
+1 -8
home/development/js.nix
··· 29 29 }; 30 30 31 31 config = mkIf cfg.js.enable { 32 - age.secrets."${NPMRC_PATH}" = { 33 - symlink = true; 34 - path = "${NPMRC_PATH}"; 35 - file = ./encrypt/npmrc.age; 36 - }; 37 - 38 32 home.sessionPath = [ 39 33 "./node_modules/.bin" 40 34 PNPM_HOME ··· 75 69 nodejs_22 76 70 ] 77 71 ++ optionals cfg.js.bun [ pkgs.bun ] 78 - ++ optionals cfg.js.wasmtime [ pkgs.wasmtime ] 79 - ++ optionals hasReactNative [ pkgs.flow ]; 72 + ++ optionals cfg.js.wasmtime [ pkgs.wasmtime ]; 80 73 }; 81 74 }