10 lines
281 B
Nix
10 lines
281 B
Nix
# A Proxmox VM qemu-guest-agent configuration.
|
|
# Sources for this configuration:
|
|
# - https://github.com/NixOS/nixpkgs/blob/069de7d3deafab651fd627c8f6d7e4c7b33087a2/nixos/modules/virtualisation/proxmox-image.nix#L270
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.qemuGuest.enable = true;
|
|
}
|