about summary refs log tree commit diff
path: root/nixos/modules/tasks/filesystems/squashfs.nix
blob: a0fac904766a4b1b34a43a2d44c3b2f1867440c7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ config, lib, ... }:

let

  inInitrd = config.boot.initrd.supportedFilesystems.squashfs or false;

in

{

  boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];

}