blob: 47cdc178a269309dfd84aa1ecdbf72838cb0430c (
plain) (
tree)
|
|
{ pkgs, config, lib, ... }:
{
imports = [
./default.nix
./tailscale.nix
];
powerManagement.cpuFreqGovernor = "schedutil";
services.openssh = {
enable = true;
settings = {
PermitRootLogin = "yes";
PasswordAuthentication = false;
};
};
networking.firewall.allowedTCPPorts = [ 22 ];
}
|