Enable SSH
This commit is contained in:
parent
9ac2ca48b1
commit
aa33cf67ba
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue