Get rid of the only use of mkNotdef

This commit is contained in:
Eelco Dolstra 2013-10-28 00:08:07 +01:00
parent 335422f7be
commit 5b8c4d2a7d

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}";
};
};