{ config, lib, pkgs, modulesPath, ... }: { imports = [ (modulesPath + "/installer/scan/not-detected.nix") ]; boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; boot.extraModulePackages = [ ]; fileSystems."/" = { device = "rpool/safe/root"; fsType = "zfs"; }; fileSystems."/boot" = { device = "/dev/disk/by-uuid/"; fsType = "vfat"; }; fileSystems."/tmp" = { device = "media/tmp"; fsType = "zfs"; }; fileSystems."/docker" = { device = "rpool/docker"; fsType = "zfs"; }; fileSystems."/home" = { device = "rpool/safe/home"; fsType = "zfs"; }; fileSystems."/nix" = { device = "rpool/local/nix"; fsType = "zfs"; }; fileSystems."/storage" = { device = "storage/storage"; fsType = "zfs"; }; swapDevices = [ ]; }