update examples so they build again

This commit is contained in:
Daniel Barlow
2023-08-28 16:08:46 +01:00
parent 00c8ea66ea
commit 23ccfec5fb
2 changed files with 22 additions and 30 deletions

View File

@@ -13,14 +13,12 @@
secrets = import ./extneder-secrets.nix;
inherit
(pkgs.liminix.networking)
address
udhcpc
interface
route
;
inherit (pkgs.liminix.services) oneshot longrun bundle target;
inherit (pkgs.pseudofile) dir symlink;
inherit (pkgs) writeText dropbear ifwait serviceFns;
svc = config.system.service;
in rec {
boot = {
tftp = {
@@ -32,6 +30,7 @@ in rec {
imports = [
../modules/standard.nix
../modules/wlan.nix
../modules/network
];
hostname = "arhcive";
@@ -62,10 +61,11 @@ in rec {
};
services.dhcpc =
let iface = config.hardware.networkInterfaces.lan;
in (udhcpc iface {
let iface = config.hardware.networkInterfaces.lan;
in svc.network.dhcp.client.build {
interface = iface;
dependencies = [ config.services.hostname ];
}) // { inherit (iface) device; };
};
services.sshd = longrun {
name = "sshd";