40 lines
824 B
Nix
40 lines
824 B
Nix
|
{
|
||
|
flake,
|
||
|
config,
|
||
|
pkgs,
|
||
|
lib,
|
||
|
...
|
||
|
}: {
|
||
|
networking.hostId = "34234773";
|
||
|
networking.hostName = "pie";
|
||
|
networking.defaultGateway = {
|
||
|
address = "192.168.178.1";
|
||
|
interface = "enabcm6e4ei0";
|
||
|
};
|
||
|
|
||
|
networking.interfaces.enabcm6e4ei0.ipv4.addresses = [
|
||
|
{
|
||
|
address = "192.168.178.2";
|
||
|
prefixLength = 32;
|
||
|
}
|
||
|
];
|
||
|
|
||
|
networking.interfaces.enabcm6e4ei0.ipv6.addresses = [
|
||
|
{
|
||
|
address = "2a02:908:5b1:e3c0:3077:4e39:7763:b5b7";
|
||
|
prefixLength = 128;
|
||
|
}
|
||
|
];
|
||
|
|
||
|
networking.hosts = flake.self.lib.addLocalHostname ["caddy.local"];
|
||
|
networking.firewall.allowedTCPPorts = [ 80 ];
|
||
|
|
||
|
# Caddy reverse proxy for local services like cups
|
||
|
services.caddy = {
|
||
|
globalConfig = ''
|
||
|
default_bind 192.168.178.2 2a02:908:5b1:e3c0:3077:4e39:7763:b5b7
|
||
|
auto_https off
|
||
|
'';
|
||
|
};
|
||
|
}
|