nixos/systems/vm/configuration.nix

16 lines
213 B
Nix

{ ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
];
networking = {
hostName = "nixos-vm";
interfaces.enp0s3.useDHCP = true;
};
}