t #2

Closed
lbailly wants to merge 57 commits from CI into main
Showing only changes of commit 20776327cd - Show all commits

View file

@ -18,6 +18,14 @@ in rec {
family = "inet"; address ="10.3.0.1"; prefixLength = 16;
};
services.dhcpc = svc.network.dhcp.client.build {
interface = config.hardware.networkInterfaces.wan;
# don't start DHCP until the hostname is configured,
# so it can identify itself to the DHCP server
dependencies = [ config.services.hostname ];
};
services.sshd = svc.ssh.build { };
users.root = {