nixpkgs/nixos/modules/tasks/filesystems/squashfs.nix
2023-07-10 22:02:36 +02:00

14 lines
197 B
Nix

{ config, lib, ... }:
let
inInitrd = lib.any (fs: fs == "squashfs") config.boot.initrd.supportedFilesystems;
in
{
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];
}