main
nix 15 lines 294 Bytes
Raw
1 {
2 imports = [
3 ../boot/efi-grub.nix
4 ];
5
6 disko.devices = import ../disk-layouts/efi-zfs-raid0.nix { };
7 boot.supportedFilesystems.zfs = true;
8 boot.zfs.forceImportRoot = false;
9 networking.hostId = "91312b0a";
10
11 boot.initrd.availableKernelModules = [
12 "nvme"
13 "usbhid"
14 ];
15 }