Open port 6080 for hound

This commit is contained in:
Dave Gallant
2021-06-24 08:03:02 -04:00
parent d6c742fe32
commit b4e2eba11d
2 changed files with 12 additions and 7 deletions

12
flake.lock generated
View File

@@ -27,11 +27,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1624175578, "lastModified": 1624417001,
"narHash": "sha256-Plybi5jFlYtk9FhnZSjZO+HGsS/piTOz9iR64g1tD6Q=", "narHash": "sha256-IQZwbBBmvtNZGz1dogf2TcaMALqQJG6YSRJiUMw6hhY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "a73e619377230ff42529fd99843a8dfcb1f6de5c", "rev": "b42fce7aaae71bbf5160d88b1772cd9167b03d1a",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -58,11 +58,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1624024598, "lastModified": 1624359033,
"narHash": "sha256-X++38oH5MKEmPW4/2WdMaHQvwJzO8pJfbnzMD7DbG1E=", "narHash": "sha256-VUCSle6emCfIwMItRfMuDl2UCUNrN+AXCMV6l1AZM7E=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "33d42ad7cf2769ce6364ed4e52afa8e9d1439d58", "rev": "d2b489b24ae30278ad31e06801c3853b0edbbd9d",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@@ -15,7 +15,12 @@
address = "192.168.0.1"; address = "192.168.0.1";
interface = "enp34s0"; interface = "enp34s0";
}; };
firewall = { allowedTCPPorts = [ 8001 ]; }; firewall = {
allowedTCPPorts = [
6080 # hound
8001 # datasette
];
};
}; };
# Enable the OpenSSH server. # Enable the OpenSSH server.