2024-10-01 13:56:15 +02:00
|
|
|
{ lib, modulesPath, ... }:
|
2024-10-01 13:07:09 +02:00
|
|
|
|
|
|
|
{
|
2024-10-01 13:56:15 +02:00
|
|
|
imports = [ (modulesPath + "/profiles/qemu-guest.nix")];
|
2024-10-25 15:53:33 +02:00
|
|
|
services.qemuGuest.enable = true;
|
2024-10-01 13:07:09 +02:00
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = [ "ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod" ];
|
|
|
|
boot.initrd.kernelModules = [ "dm-snapshot" ];
|
|
|
|
|
2024-10-01 13:56:15 +02:00
|
|
|
disko.devices.disk.main = {
|
|
|
|
device = "/dev/sda";
|
|
|
|
type = "disk";
|
2024-10-01 13:07:09 +02:00
|
|
|
|
2024-10-01 13:56:15 +02:00
|
|
|
content = {
|
|
|
|
type = "gpt";
|
|
|
|
|
|
|
|
partitions = {
|
|
|
|
MBR = {
|
|
|
|
priority = 0;
|
|
|
|
size = "1M";
|
|
|
|
type = "EF02";
|
|
|
|
};
|
2024-10-01 13:07:09 +02:00
|
|
|
|
2024-10-01 13:56:15 +02:00
|
|
|
ESP = {
|
|
|
|
priority = 1;
|
|
|
|
size = "500M";
|
|
|
|
type = "EF00";
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "vfat";
|
|
|
|
mountpoint = "/boot";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
root = {
|
|
|
|
priority = 2;
|
|
|
|
size = "100%";
|
|
|
|
content = {
|
|
|
|
type = "filesystem";
|
|
|
|
format = "ext4";
|
|
|
|
mountpoint = "/";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
2024-10-01 13:07:09 +02:00
|
|
|
|
|
|
|
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
|
|
|
|
# (the default) this is the recommended approach. When using systemd-networkd it's
|
|
|
|
# still possible to use this option, but it's recommended to use it in conjunction
|
|
|
|
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
|
|
|
|
networking.useDHCP = lib.mkDefault true;
|
|
|
|
# networking.interfaces.ens18.useDHCP = lib.mkDefault true;
|
|
|
|
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
|
|
|
|
}
|