Enable SSH

This commit is contained in:
coolneng 2021-03-15 11:07:54 +01:00
parent 9ac2ca48b1
commit aa33cf67ba
Signed by: coolneng
GPG Key ID: 9893DA236405AF57
1 changed files with 6 additions and 0 deletions

View File

@ -50,6 +50,12 @@
# NixOS version # NixOS version
system.stateVersion = "20.09"; system.stateVersion = "20.09";
# Configure basic SSH access
services.openssh = {
enable = true;
permitRootLogin = "yes";
};
# Create coace user # Create coace user
users.users.coace = { users.users.coace = {
isNormalUser = true; isNormalUser = true;