Compare commits

...

1 Commits

Author SHA1 Message Date
coolneng aa33cf67ba
Enable SSH 2021-03-15 11:08:30 +01:00
1 changed files with 6 additions and 0 deletions

View File

@ -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;