mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-26 03:15:32 +03:00
13 lines
238 B
Nix
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";
|
|
}
|