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