depot/third_party/nixpkgs/nixos/modules/tasks/filesystems/squashfs.nix

14 lines
197 B
Nix
Raw Normal View History

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