initial commit

This commit is contained in:
RootHost-Stormwind
2025-01-13 00:46:22 +01:00
commit 3dbfc323e6
9 changed files with 188 additions and 0 deletions

9
sshd.nix Normal file
View File

@@ -0,0 +1,9 @@
{ config, pkgs, ... }:
{
services.openssh = {
enable = true;
passwordAuthentication = true;
};
}