mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
41 lines
886 B
Nix
41 lines
886 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
../profiles/qemu-guest.nix
|
|
../image/file-options.nix
|
|
];
|
|
|
|
config = {
|
|
fileSystems."/" = {
|
|
device = "/dev/disk/by-label/nixos";
|
|
fsType = "ext4";
|
|
autoResize = true;
|
|
};
|
|
|
|
boot.growPartition = true;
|
|
boot.kernelParams = [ "console=ttyS0" ];
|
|
boot.loader.grub.device = "/dev/vda";
|
|
boot.loader.timeout = 0;
|
|
|
|
services.qemuGuest.enable = true;
|
|
services.openssh.enable = true;
|
|
services.cloud-init.enable = true;
|
|
systemd.services."serial-getty@ttyS0".enable = true;
|
|
|
|
system.nixos.tags = [ "kubevirt" ];
|
|
image.extension = "qcow2";
|
|
system.build.image = config.system.build.kubevirtImage;
|
|
system.build.kubevirtImage = import ../../lib/make-disk-image.nix {
|
|
inherit lib config pkgs;
|
|
inherit (config.image) baseName;
|
|
format = "qcow2";
|
|
};
|
|
};
|
|
}
|