2023-07-04 17:06:49 +02:00
|
|
|
{ config, lib, ... }:
|
|
|
|
|
|
|
|
let
|
|
|
|
|
2024-02-18 23:35:17 +01:00
|
|
|
inInitrd = config.boot.initrd.supportedFilesystems.squashfs or false;
|
2023-07-04 17:06:49 +02:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];
|
|
|
|
|
|
|
|
}
|