repo.or.cz
/
NixPkgs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
grafana-alloy: don't build the frontend twice
[NixPkgs.git]
/
nixos
/
modules
/
tasks
/
filesystems
/
squashfs.nix
blob
a0fac904766a4b1b34a43a2d44c3b2f1867440c7
1
{ config, lib, ... }:
2
3
let
4
5
inInitrd = config.boot.initrd.supportedFilesystems.squashfs or false;
6
7
in
8
9
{
10
11
boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ];
12
13
}