nixos-generators/formats/docker.nix
2024-11-11 17:00:01 +01:00

17 lines
323 B
Nix

{
modulesPath,
lib,
...
}: {
imports = [
"${toString modulesPath}/virtualisation/docker-image.nix"
];
boot.loader.grub.enable = lib.mkForce false;
boot.loader.systemd-boot.enable = lib.mkForce false;
services.journald.console = "/dev/console";
formatAttr = "tarball";
fileExtension = ".tar.xz";
}