Files
dotfiles/hosts/suwako/services.nix
2025-06-29 18:49:58 +05:30

17 lines
245 B
Nix

{ config, pkgs, lib, conf, ... }:
let
domain = conf.network.addresses.domain.natto;
in
{
services = {
cron.enable = true;
openssh = {
enable = true;
settings.PermitRootLogin = "yes";
ports = [ 22 ];
};
};
}