nix/nixos/zen/hardware-configuration.nix
iofq f022e338b0
Some checks are pending
/ check (push) Waiting to run
opentofu incus
2026-03-23 00:14:25 -05:00

37 lines
580 B
Nix

{
config,
lib,
pkgs,
modulesPath,
...
}:
{
imports = [ ];
boot.initrd.availableKernelModules = [
"xhci_pci"
"ahci"
];
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "local/incus/containers/zen";
fsType = "zfs";
};
supportedFilesystems = [
"zfs"
"nfs"
];
zfs = {
extraPools = [ "tank" ];
forceImportRoot = false;
};
swapDevices = [ ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
system.stateVersion = "25.11";
}