re-organize

This commit is contained in:
Henry Hiles 2025-03-22 21:31:51 -04:00
parent 81b49aa923
commit 350973f556
35 changed files with 8 additions and 8 deletions

1
modules/server/sigs.nix Normal file
View file

@ -0,0 +1 @@
{nix.settings.require-sigs = false;}

10
modules/server/ssh.nix Normal file
View file

@ -0,0 +1,10 @@
{
services.openssh = {
enable = true;
settings = {
PasswordAuthentication = true; # TODO: False
AllowUsers = ["quadradical"];
PermitRootLogin = "no";
};
};
}