Files
dotfiles/hosts/suwako/services/default.nix
2025-09-04 15:32:44 +05:30

23 lines
294 B
Nix

{ ... }:
{
imports = [
./nginx.nix
./pufferpanel.nix
./filehost.nix
];
virtualisation.docker = {
enable = true;
};
services = {
cron.enable = true;
openssh = {
enable = true;
settings.PermitRootLogin = "yes";
ports = [ 22 ];
};
};
}