diff options
author | makefu <github@syntax-fehler.de> | 2018-09-11 23:23:14 +0200 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2018-09-11 23:23:14 +0200 |
commit | 9c9b62e15e4ac11d4379e66b974f1389daf939fe (patch) | |
tree | d9234e8fb838304748816720bf12a2faac29e191 | |
parent | 969d4e1f6ad9e475d9416e22e52baa63c75c7d89 (diff) |
lib/default: check for fs instead of luks
-rw-r--r-- | lib/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/default.nix b/lib/default.nix index 5209356..9361842 100644 --- a/lib/default.nix +++ b/lib/default.nix @@ -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: ( |