From 4e31f34c13c0391b3496c325da7bdf47e1d7fa7b Mon Sep 17 00:00:00 2001 From: illustris Date: Sun, 31 Oct 2021 23:03:42 +0530 Subject: [PATCH] add proxmox (vma) image format --- formats/proxmox.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 formats/proxmox.nix diff --git a/formats/proxmox.nix b/formats/proxmox.nix new file mode 100644 index 00000000..58d599ee --- /dev/null +++ b/formats/proxmox.nix @@ -0,0 +1,7 @@ +{ modulesPath, ... }: +{ + imports = [ + "${toString modulesPath}/virtualisation/proxmox-image.nix" + ]; + formatAttr = "VMA"; +}