weasel: nix-serve bind to 0.0.0.0

This commit is contained in:
Aleix Boné 2025-10-06 16:24:41 +02:00
parent b5cd72b0c1
commit 21d77d6190
No known key found for this signature in database

View File

@ -35,8 +35,7 @@
services.nix-serve = {
enable = true;
# Only listen locally, as we serve it via ssh
bindAddress = "127.0.0.1";
bindAddress = "0.0.0.0";
port = 5000;
package = pkgs.haskell.lib.overrideSrc (pkgs.haskell.packages.ghc96.nix-serve-ng.override { nix = pkgs.nixVersions.nix_2_28; }) {
src = pkgs.fetchgit {