hosts/bootstrap: explicitly configure SSH daemon

This commit is contained in:
Gabriel Arazas 2023-07-05 16:39:58 +08:00
parent 0aa69a1ad8
commit 66317b18bc
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -22,5 +22,10 @@
supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ]; supportedFilesystems = lib.mkForce [ "btrfs" "reiserfs" "vfat" "f2fs" "xfs" "ntfs" "cifs" ];
}; };
services.openssh = {
enable = true;
allowSFTP = true;
};
users.users.root.password = ""; users.users.root.password = "";
} }