lol

Merge pull request #275105 from SuperSandro2000/initrd-crypttab

nixos/luksroot: add final newline to /etc/crypttab

authored by

Will Fancher and committed by
GitHub
4aeb82af b25b7d9e

+1 -1
+1 -1
nixos/modules/system/boot/luksroot.nix
··· 513 513 postLVM = filterAttrs (n: v: !v.preLVM) luks.devices; 514 514 515 515 516 - stage1Crypttab = pkgs.writeText "initrd-crypttab" (lib.concatStringsSep "\n" (lib.mapAttrsToList (n: v: let 516 + stage1Crypttab = pkgs.writeText "initrd-crypttab" (lib.concatLines (lib.mapAttrsToList (n: v: let 517 517 opts = v.crypttabExtraOpts 518 518 ++ optional v.allowDiscards "discard" 519 519 ++ optionals v.bypassWorkqueues [ "no-read-workqueue" "no-write-workqueue" ]