infrastructure/common/generic-vm.nix

7 lines
126 B
Nix
Raw Normal View History

2024-01-03 11:40:31 +01:00
{ lib, ... }: {
networking.useDHCP = lib.mkDefault true;
2021-10-13 18:17:45 +02:00
# Enable qemu guest agent
services.qemuGuest.enable = true;
}