nixos/systems/vm/configuration.nix

16 lines
213 B
Nix
Raw Normal View History

2021-12-28 23:05:17 +01:00
{ ... }:
2021-11-16 20:57:04 +01:00
{
imports =
2021-12-22 16:53:44 +01:00
[
# Include the results of the hardware scan.
2021-11-16 20:57:04 +01:00
./hardware-configuration.nix
];
2021-11-23 20:57:23 +01:00
networking = {
hostName = "nixos-vm";
interfaces.enp0s3.useDHCP = true;
};
2021-11-16 20:57:04 +01:00
}