55 lines
1.4 KiB
Nix
55 lines
1.4 KiB
Nix
{ config, pkgs, ... } :
|
|
let
|
|
inherit (pkgs.liminix.networking) interface address udhcpc odhcpc route;
|
|
inherit (pkgs.liminix.services) oneshot longrun bundle target;
|
|
inherit (pkgs) writeText;
|
|
in rec {
|
|
imports = [
|
|
./modules/tftpboot.nix
|
|
./modules/wlan.nix
|
|
./modules/ntp
|
|
];
|
|
services.loopback = config.hardware.networkInterfaces.lo;
|
|
|
|
services.dhcpv4 =
|
|
let iface = interface { type = "hardware"; device = "eth1"; };
|
|
in udhcpc iface {};
|
|
|
|
services.dhcpv6 =
|
|
let iface = interface { type = "hardware"; device = "eth1"; };
|
|
in odhcpc iface { uid = "e7"; };
|
|
|
|
services.defaultroute4 = route {
|
|
name = "defautlrote";
|
|
via = "$(output ${services.dhcpv4} address)";
|
|
target = "default";
|
|
dependencies = [ services.dhcpv4 ];
|
|
};
|
|
|
|
services.packet_forwarding =
|
|
let
|
|
iface = services.dhcpv4;
|
|
filename = "/proc/sys/net/ipv4/conf/$(output ${iface} ifname)/forwarding";
|
|
in oneshot {
|
|
name = "let-the-ip-flow";
|
|
up = "echo 1 > ${filename}";
|
|
down = "echo 0 > ${filename}";
|
|
dependencies = [iface];
|
|
};
|
|
|
|
services.ntp = config.system.service.ntp {
|
|
pools = { "pool.ntp.org" = ["iburst"] ; };
|
|
};
|
|
|
|
services.default = target {
|
|
name = "default";
|
|
contents = with services; [ loopback ntp defaultroute4 ];
|
|
};
|
|
|
|
boot.tftp = {
|
|
serverip = "192.168.8.148";
|
|
ipaddr = "192.168.8.251";
|
|
};
|
|
|
|
defaultProfile.packages = [ pkgs.hello ] ;
|
|
}
|