From aa33cf67bae4790d5d6e8adbc5afc2e4e85eb635 Mon Sep 17 00:00:00 2001 From: coolneng Date: Mon, 15 Mar 2021 11:07:54 +0100 Subject: [PATCH] Enable SSH --- configuration.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/configuration.nix b/configuration.nix index b029ef6..60cd8f7 100644 --- a/configuration.nix +++ b/configuration.nix @@ -50,6 +50,12 @@ # NixOS version system.stateVersion = "20.09"; + # Configure basic SSH access + services.openssh = { + enable = true; + permitRootLogin = "yes"; + }; + # Create coace user users.users.coace = { isNormalUser = true;