Personal Nix setup

Add flow fix port

Changed files
+4 -2
home
development
modules
server
+3 -1
home/development/js.nix
···
with lib;
let
cfg = config.modules.development;
+
hasReactNative = config.modules.development.enable;
NPMRC_PATH = "${config.xdg.configHome}/npm/npmrc";
BUNFIG_PATH = "${config.xdg.configHome}/.bunfig.toml";
BUN_HOME = "${config.xdg.dataHome}/bun";
···
nodejs_22
]
++ optionals cfg.js.bun [ pkgs.bun ]
-
++ optionals cfg.js.wasmtime [ pkgs.wasmtime ];
+
++ optionals cfg.js.wasmtime [ pkgs.wasmtime ]
+
++ optionals hasReactNative [ pkgs.flow ];
};
}
+1 -1
modules/server/sshd.nix
···
services.openssh = {
enable = true;
-
ports = [ 22 2222 ];
} // helpers.linuxAttrs {
openFirewall = mkDefault (!config.modules.router.enable);
+
ports = [ 22 2222 ];
};
};
}