18 lines
506 B
Nix
Raw Normal View History

2023-05-24 21:25:16 +03:00
{ ... }: {
2023-02-23 00:01:15 +03:00
autoinstall.Arch-Builder-VM = {
2023-02-11 01:21:12 +03:00
mainuser = "ataraxia";
flakesPath = "/home/nixos/nixos-config";
partitioning.useEntireDisk = true;
2023-05-24 21:25:16 +03:00
partitioning.disk = "/dev/disk/by-id/ata-QEMU_HARDDISK_QM00003";
2023-02-11 01:21:12 +03:00
partitioning.nullifyDisk = false;
2023-05-24 21:25:16 +03:00
partitioning.createBootPool = true;
2023-02-11 01:21:12 +03:00
swapPartition.enable = true;
2023-05-24 21:25:16 +03:00
swapPartition.size = "2GiB";
efiMountPoint = "/efi";
bootSize = "512MiB";
efiSize = "128MiB";
2023-02-11 01:21:12 +03:00
zfsOpts.ashift = 13;
2023-05-24 21:25:16 +03:00
persist.enable = false;
2023-02-11 01:21:12 +03:00
};
}