37 lines
580 B
Nix
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";
|
|
}
|