nixos-generators/formats/lxc-metadata.nix

17 lines
296 B
Nix

{
config,
lib,
modulesPath,
pkgs,
...
}: {
imports = [
"${toString modulesPath}/virtualisation/lxc-container.nix"
];
boot.loader.grub.enable = lib.mkForce false;
boot.loader.systemd-boot.enable = lib.mkForce false;
formatAttr = "metadata";
fileExtension = ".tar.xz";
}