# Do not modify this file! It was generated by ‘nixos-generate-config’ # and may be overwritten by future invocations. Please make changes # to /etc/nixos/configuration.nix instead. { modulesPath , ... }: { imports = [ (modulesPath + "/profiles/qemu-guest.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "virtio_pci" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; disko.devices = { disk = { sda = { type = "disk"; device = "/dev/sda"; content = { type = "table"; format = "gpt"; partitions = [ { type = "partition"; name = "ESP"; start = "0"; end = "512MiB"; fs-type = "fat32"; bootable = true; content = { type = "filesystem"; format = "vfat"; mountpoint = "/boot"; }; } { type = "partition"; name = "zfs"; start = "512MiB"; end = "100%"; content = { type = "zfs"; pool = "zroot"; }; } ]; }; }; }; zpool = { zroot = { type = "zpool"; rootFsOptions = { compression = "lz4"; "com.sun:auto-snapshot" = "false"; }; datasets = { "root" = { zfs_type = "filesystem"; mountpoint = null; }; "root/nixos" = { zfs_type = "filesystem"; mountpoint = "/"; }; "root/home" = { zfs_type = "filesystem"; mountpoint = "/home"; }; }; }; }; }; swapDevices = [ ]; }