migrates dnsc-server

This commit is contained in:
Dennis Schoepf 2026-03-04 22:46:08 +01:00
parent ac4074245c
commit 996dc27419
15 changed files with 318 additions and 9 deletions

View file

@ -3,7 +3,15 @@
flake.modules.nixos.ssh =
{ pkgs, ... }:
{
services.openssh.enable = true;
services.openssh = {
enable = true;
settings = {
X11Forwarding = false;
PermitRootLogin = "no";
PasswordAuthentication = false;
};
openFirewall = true;
};
home-manager.sharedModules = [
inputs.self.modules.homeManager.ssh