zsh add packages

This commit is contained in:
2024-02-29 14:12:28 +01:00
parent 7be6a72e46
commit 24e7fc6fbc
5 changed files with 1499 additions and 12 deletions

17
home/services/ssh.nix Normal file
View File

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