lol

nixos/filesystems: init squashfs

authored by

nikstur and committed by
Bjørn Forsman
3b6bc9b5 f93ea48c

+14
+1
nixos/modules/module-list.nix
··· 1410 1410 ./tasks/filesystems/nfs.nix 1411 1411 ./tasks/filesystems/ntfs.nix 1412 1412 ./tasks/filesystems/reiserfs.nix 1413 + ./tasks/filesystems/squashfs.nix 1413 1414 ./tasks/filesystems/unionfs-fuse.nix 1414 1415 ./tasks/filesystems/vboxsf.nix 1415 1416 ./tasks/filesystems/vfat.nix
+13
nixos/modules/tasks/filesystems/squashfs.nix
··· 1 + { config, lib, ... }: 2 + 3 + let 4 + 5 + inInitrd = lib.any (fs: fs == "squashfs") config.boot.initrd.supportedFilesystems; 6 + 7 + in 8 + 9 + { 10 + 11 + boot.initrd.availableKernelModules = lib.mkIf inInitrd [ "squashfs" ]; 12 + 13 + }