Personal Nix setup
0
fork

Configure Feed

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

Add flow fix port

+4 -2
+3 -1
home/development/js.nix
··· 3 3 with lib; 4 4 let 5 5 cfg = config.modules.development; 6 + hasReactNative = config.modules.development.enable; 6 7 NPMRC_PATH = "${config.xdg.configHome}/npm/npmrc"; 7 8 BUNFIG_PATH = "${config.xdg.configHome}/.bunfig.toml"; 8 9 BUN_HOME = "${config.xdg.dataHome}/bun"; ··· 73 74 nodejs_22 74 75 ] 75 76 ++ optionals cfg.js.bun [ pkgs.bun ] 76 - ++ optionals cfg.js.wasmtime [ pkgs.wasmtime ]; 77 + ++ optionals cfg.js.wasmtime [ pkgs.wasmtime ] 78 + ++ optionals hasReactNative [ pkgs.flow ]; 77 79 }; 78 80 }
+1 -1
modules/server/sshd.nix
··· 20 20 21 21 services.openssh = { 22 22 enable = true; 23 - ports = [ 22 2222 ]; 24 23 } // helpers.linuxAttrs { 25 24 openFirewall = mkDefault (!config.modules.router.enable); 25 + ports = [ 22 2222 ]; 26 26 }; 27 27 }; 28 28 }