Added open_ports argument to networking file
This commit is contained in:
parent
627dd4c412
commit
45dc1cfe52
@ -4,8 +4,9 @@
|
|||||||
../hardware/media.nix
|
../hardware/media.nix
|
||||||
./headless.nix
|
./headless.nix
|
||||||
(import ./networking.nix {
|
(import ./networking.nix {
|
||||||
hostname = "sampledb-dev";
|
hostname = "r330-media";
|
||||||
ip_address = "192.168.100.40";
|
ip_address = "192.168.100.40";
|
||||||
|
open_ports = [ 80 443 32400 ];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
{ ip_address, hostname }:
|
{ ip_address, hostname, open_ports }:
|
||||||
{
|
{
|
||||||
# Configure hostname.
|
# Configure hostname.
|
||||||
networking.hostName = hostname;
|
networking.hostName = hostname;
|
||||||
@ -16,7 +16,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
networking.nameservers = [ "192.168.100.1" ];
|
networking.nameservers = [ "192.168.100.1" ];
|
||||||
networking.firewall.allowedTCPPorts = [ 80 443 ];
|
networking.firewall.allowedTCPPorts = open_ports;
|
||||||
networking.interfaces.enp6s18.ipv4.addresses = [
|
networking.interfaces.enp6s18.ipv4.addresses = [
|
||||||
{
|
{
|
||||||
address = ip_address;
|
address = ip_address;
|
||||||
|
@ -6,6 +6,7 @@
|
|||||||
(import ./networking.nix {
|
(import ./networking.nix {
|
||||||
hostname = "sampledb-dev";
|
hostname = "sampledb-dev";
|
||||||
ip_address = "192.168.100.42";
|
ip_address = "192.168.100.42";
|
||||||
|
open_ports = [ 80 443 ];
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user