mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-26 01:56:13 +01:00
fed32ecfca
Signed-off-by: Magic_RB <magic_rb@redalder.org>
19 lines
368 B
Nix
19 lines
368 B
Nix
{ config, ... }:
|
|
{
|
|
boot = {
|
|
supportedFilesystems = ["zfs"];
|
|
initrd.availableKernelModules = [
|
|
"xhci_pci"
|
|
"ahci"
|
|
"usbhid"
|
|
"usb_storage"
|
|
"sd_mod"
|
|
"nvme"
|
|
];
|
|
zfs.enableUnstable = true;
|
|
kernelPackages = config.boot.zfs.package.latestCompatibleLinuxPackages;
|
|
};
|
|
|
|
hardware.enableRedistributableFirmware = true;
|
|
}
|