restructure folders - 2

This commit is contained in:
2024-03-03 13:15:52 +01:00
parent 0ff29aca1a
commit 0fde604f96
8 changed files with 41 additions and 59 deletions

15
home/services/openssh.nix Normal file
View File

@@ -0,0 +1,15 @@
{ ... }:
{
services = {
ssh-agent = { enable = true; };
openssh = {
enable = true;
settings = {
PasswordAuthentication = false;
PermitRootLogin = "prohibit-password";
};
};
};
}