restructure folders - 3

This commit is contained in:
2024-03-03 13:28:48 +01:00
parent 0fde604f96
commit 398205fc33
3 changed files with 6 additions and 17 deletions

View File

@@ -1 +1,5 @@
{ imports = [ ./openssh.nix ./ssh-agent.nix ]; } { pkgs, ... }:
{
imports = [ ./ssh-agent.nix ];
}

View File

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