19 lines
308 B
Nix
19 lines
308 B
Nix
{ config, ... }:
|
|
{
|
|
networking = {
|
|
hostName = config.my.hostname;
|
|
networkmanager = {
|
|
enable = true;
|
|
};
|
|
hosts = {
|
|
"10.105.6.201" = ["weyma-omni.infra.dubyatp.xyz"];
|
|
};
|
|
};
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PermitRootLogin = "no";
|
|
};
|
|
};
|
|
} |