mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-26 03:15:32 +03:00
17 lines
295 B
Nix
17 lines
295 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
modulesPath,
|
|
...
|
|
}: {
|
|
imports = [
|
|
"${toString modulesPath}/virtualisation/lxc-container.nix"
|
|
];
|
|
|
|
boot.loader.grub.enable = lib.mkForce false;
|
|
boot.loader.systemd-boot.enable = lib.mkForce false;
|
|
formatAttr = "tarball";
|
|
fileExtension = ".tar.xz";
|
|
}
|