nixos: fix linux containers (systemd-nspawn, lxc, lxc-libvirt)

- Make dhcp work, use dhcpcd without udev in container
- Make login shell work, patch getty to not wait for /dev/tty0
- Make ssh work, sshd/pam do not start session
This commit is contained in:
Jaka Hudoklin
2014-03-24 23:59:50 +01:00
parent a1a167bc8b
commit 70a4c7b1df
6 changed files with 20 additions and 3 deletions
@@ -285,7 +285,7 @@ in
networking.firewall.allowedTCPPorts = cfg.ports;
security.pam.services.sshd =
{ startSession = true;
{ startSession = !config.boot.isContainer;
showMotd = true;
unixAuth = cfg.passwordAuthentication;
};