liminix/vanilla-configuration.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2022-09-25 10:22:15 +00:00
{ config, pkgs, ... } :
let
2023-08-28 14:10:53 +00:00
inherit (pkgs.liminix.networking) interface address route;
inherit (pkgs.liminix.services) oneshot longrun bundle target;
inherit (pkgs) writeText;
2023-08-28 14:10:53 +00:00
svc = config.system.service;
in rec {
imports = [
./modules/tftpboot.nix
./modules/wlan.nix
2023-08-28 14:10:53 +00:00
./modules/network
2023-07-22 22:22:45 +00:00
./modules/ntp
];
services.loopback = config.hardware.networkInterfaces.lo;
services.dhcpv4 =
2023-08-28 14:10:53 +00:00
let iface = svc.network.link.build { ifname = "eth1"; };
in svc.network.dhcp.client.build { interface = iface; };
2022-09-26 11:55:10 +00:00
services.defaultroute4 = route {
name = "defautlrote";
via = "$(output ${services.dhcpv4} address)";
2022-09-26 11:55:10 +00:00
target = "default";
dependencies = [ services.dhcpv4 ];
};
services.packet_forwarding =
let
iface = services.dhcpv4;
filename = "/proc/sys/net/ipv4/conf/$(output ${iface} ifname)/forwarding";
in oneshot {
2022-09-26 11:55:10 +00:00
name = "let-the-ip-flow";
up = "echo 1 > ${filename}";
down = "echo 0 > ${filename}";
dependencies = [iface];
};
2023-08-05 13:16:54 +00:00
services.ntp = config.system.service.ntp.build {
2023-07-22 22:22:45 +00:00
pools = { "pool.ntp.org" = ["iburst"] ; };
};
boot.tftp = {
serverip = "192.168.8.148";
ipaddr = "192.168.8.251";
};
defaultProfile.packages = [ pkgs.hello ] ;
}