nixos/systems/vm/configuration.nix
2022-01-01 15:15:41 +01:00

17 lines
245 B
Nix

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