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

14 lines
184 B
Nix
Raw Normal View History

{ config, lib, ... }:
let
inInitrd = config.boot.initrd.supportedFilesystems.squashfs or false;
in
{
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];
}