nixos-generators/formats/docker.nix
2022-04-19 19:09:35 +02:00

13 lines
238 B
Nix

{ modulesPath, lib, ... }:
{
imports = [
"${toString modulesPath}/virtualisation/docker-image.nix"
];
boot.isContainer = true;
services.journald.console = "/dev/console";
formatAttr = "tarball";
filename = "*.tar.xz";
}