13 lines
196 B
Nix
13 lines
196 B
Nix
{ config, pkgs, fetchurl, lib, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
];
|
|
|
|
efi.enable = true;
|
|
|
|
networking.hostName = "nat";
|
|
networking.interfaces.ens160.useDHCP = true;
|
|
}
|