configuration.nix/sys/mailserver/configuration.nix
2023-09-15 21:24:17 +03:00

21 lines
379 B
Nix

{ config, pkgs, ... }:
{
imports = [
./vpsadminos.nix
./web.nix
];
services.openssh.enable = true;
services.openssh.settings.PermitRootLogin = "yes";
#users.extraUsers.root.openssh.authorizedKeys.keys =
# [ "..." ];
systemd.extraConfig = ''
DefaultTimeoutStartSec=900s
'';
time.timeZone = "Europe/Amsterdam";
system.stateVersion = "23.05";
}