More networking debugging

This commit is contained in:
Random936
2024-11-03 20:59:00 -08:00
parent 2971a7c1fb
commit 3e15342e68
3 changed files with 8 additions and 6 deletions

View File

@@ -1,12 +1,13 @@
{ config, pkgs, inputs, ... }: {
{ config, pkgs, inputs, lib, ... }: {
imports = [
../hardware/media.nix
./headless.nix
(import ./networking.nix {
(import ./networking.nix {
hostname = "r330-media";
ip_address = "192.168.100.40";
ip_address = "192.168.100.40";
open_ports = [ 80 443 32400 ];
inherit lib;
})
];