home-server/hosts/vps/hardware-configuration.nix

9 lines
191 B
Nix
Raw Normal View History

{ modulesPath, lib, ... }:
{
imports = [ (modulesPath + "/profiles/qemu-guest.nix") ];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
}