mirror of
https://github.com/nix-community/nixos-generators.git
synced 2024-11-22 18:24:59 +03:00
107bd67032
with same priority
17 lines
323 B
Nix
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";
|
|
}
|