hosts/suwako: split service files

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-09-04 11:25:31 +05:30
parent 7e4a6ac8fe
commit 895a495b3f
6 changed files with 76 additions and 72 deletions

View File

@@ -0,0 +1,21 @@
{ ... }:
{
imports = [
./nginx.nix
./pufferpanel.nix
];
virtualisation.docker = {
enable = true;
};
services = {
cron.enable = true;
openssh = {
enable = true;
settings.PermitRootLogin = "yes";
ports = [ 22 ];
};
};
}