6 lines
158 B
Nix
6 lines
158 B
Nix
{ config, lib, pkgs, ... }:
|
|
{
|
|
networking.hostName = "sandbox";
|
|
networking.interfaces.ens18.useDHCP = true;
|
|
networking.defaultGateway = "192.168.1.1";
|
|
}
|