Get rid of the only use of mkNotdef

This commit is contained in:
Eelco Dolstra
2013-10-28 22:45:54 +01:00
parent 335422f7be
commit 5b8c4d2a7d
+2 -5
View File
@@ -72,11 +72,8 @@ with utils;
};
config = {
device =
if options.label.isDefined then
"/dev/disk/by-label/${config.label}"
else
mkNotdef;
device = mkIf options.label.isDefined
"/dev/disk/by-label/${config.label}";
};
};