add voyager

This commit is contained in:
2026-07-06 22:24:28 +02:00
parent 925eb72c53
commit f87ba26c5e
9 changed files with 65 additions and 26 deletions
+19
View File
@@ -0,0 +1,19 @@
_:
{
services.dnsmasq = {
enable = true;
settings = {
dhcp-range = [ "10.11.1.100,10.11.1.200,12h" ];
interface = "enp4s0";
server = [ "10.11.0.10" ];
no-hosts = true;
dhcp-option = [
"option:router,10.11.0.1"
"option:dns-server,10.11.0.10"
];
};
};
}