2023-07-15 17:15:38 +00:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2024-02-29 20:09:43 +00:00
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.squashfs or false;
|
2023-07-15 17:15:38 +00:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];
|
|
|
|
|
|
|
|
}
|