add ssh for hosts

This commit is contained in:
Mohamed Chrayed 2024-08-30 22:18:24 +02:00
parent c28278bd6d
commit 3cb57f203e
2 changed files with 5 additions and 0 deletions

View File

@ -34,6 +34,7 @@
./modules/system/networking
./modules/system/nixsettings
./modules/system/shell
./modules/system/ssh
./modules/system/systemversion
./modules/system/upgrades
./modules/system/users

View File

@ -0,0 +1,4 @@
{ ... }:
{
services.openssh.enable = true;
}