mirror of
https://github.com/nix-community/disko
synced 2024-11-10 06:14:14 +00:00
lib/default: check for fs instead of luks
This commit is contained in:
parent
969d4e1f6a
commit
9c9b62e15e
1 changed files with 1 additions and 1 deletions
|
@ -96,7 +96,7 @@ let {
|
|||
in ''
|
||||
${optionalString (hasAttr "luks" z) (concatStringsSep "\n" (attrValues z.luks))}
|
||||
${optionalString (hasAttr "lvm" z) (concatStringsSep "\n" (attrValues z.lvm))}
|
||||
${optionalString (hasAttr "luks" z) (concatStringsSep "\n" (attrValues z.fs))}
|
||||
${optionalString (hasAttr "fs" z) (concatStringsSep "\n" (attrValues z.fs))}
|
||||
'';
|
||||
|
||||
mount.luks = q: x: (
|
||||
|
|
Loading…
Reference in a new issue