system: Enable ssh for all systems

This commit is contained in:
Donovan Glover
2024-08-11 18:47:05 -04:00
parent f3855a5260
commit a3a8766ada
2 changed files with 8 additions and 2 deletions

View File

@ -265,6 +265,14 @@ in
ensureUsers = singleton { name = username; };
ensureDatabases = [ username ];
};
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
};
};
};
environment = {