use ssh service in examples

doc-do-over
Daniel Barlow 2023-09-01 17:32:53 +01:00
parent d7336679c4
commit ef666c34cd
2 changed files with 3 additions and 7 deletions

View File

@ -28,6 +28,7 @@ in rec {
../modules/wlan.nix
../modules/network
../modules/vlan
../modules/ssh
];
hostname = "arhcive";

View File

@ -29,6 +29,7 @@ in rec {
../modules/network
../modules/hostapd
../modules/bridge
../modules/ssh
../modules/standard.nix
];
@ -100,13 +101,7 @@ in rec {
];
};
services.sshd = longrun {
name = "sshd";
run = ''
mkdir -p /run/dropbear
${dropbear}/bin/dropbear -E -P /run/dropbear.pid -R -F
'';
};
services.sshd = svc.ssh.build {};
services.resolvconf = oneshot rec {
dependencies = [ services.dhcpc ];