initial commit
This commit is contained in:
19
common/networking.nix
Normal file
19
common/networking.nix
Normal file
@@ -0,0 +1,19 @@
|
||||
{ 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";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user