From aedaaa3a05abdbfb3ac0982384f9ce82343e1157 Mon Sep 17 00:00:00 2001 From: Thomas Levine <_@thomaslevine.com> Date: Mon, 11 Apr 2016 17:28:05 +0000 Subject: [PATCH] ssh --- packages/configuration.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/packages/configuration.nix b/packages/configuration.nix index 554c6d8..46db9c3 100644 --- a/packages/configuration.nix +++ b/packages/configuration.nix @@ -11,9 +11,18 @@ with lib; networking.useDHCP = false; environment.systemPackages = with pkgs; [ - busybox + # Urchin bash dash mksh zsh + # busybox + + # Other + vim + ]; + services.openssh = { + enable = true; + passwordAuthentication = false; + }; users.extraUsers.user = { name = "tlevine";