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