nix/nixos/zen/hardware-configuration.nix
iofq 3d8242b314
Some checks failed
/ check (push) Has been cancelled
opentofu incus
2026-03-23 00:19:00 -05:00

27 lines
442 B
Nix

{
lib,
...
}:
{
boot = {
initrd.availableKernelModules = [
"xhci_pci"
"ahci"
];
initrd.kernelModules = [ ];
kernelModules = [ "kvm-amd" ];
extraModulePackages = [ ];
supportedFilesystems = [
"zfs"
"nfs"
];
zfs = {
extraPools = [ "tank" ];
forceImportRoot = false;
};
};
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
system.stateVersion = "25.11";
}