Fixing wrong assertion sign

svn path=/nixos/branches/modular-nixos/; revision=16236
This commit is contained in:
Michael Raskin 2009-07-08 09:10:26 +00:00
parent 1118c4b6d1
commit 9a66d59786

View File

@ -30,7 +30,7 @@ in
mkIf config.services.xfs.enable {
assertions = [ { assertion = ! config.fonts.enableFontDir; message = "Please enable fontDir (fonts.enableFontDir) to use xfs."; } ];
assertions = [ { assertion = config.fonts.enableFontDir; message = "Please enable fontDir (fonts.enableFontDir) to use xfs."; } ];
require = [
options