mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 18:24:59 +03:00
10 lines
166 B
Nix
10 lines
166 B
Nix
{ modulesPath, ... }:
|
|
{
|
|
imports = [
|
|
"${toString modulesPath}/virtualisation/virtualbox-image.nix"
|
|
];
|
|
|
|
formatAttr = "virtualBoxOVA";
|
|
filename = "*.ova";
|
|
}
|