From 7d94e2ed4d870d1e4b09d1cdfc226807576820a5 Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 10 Nov 2007 13:35:15 +0000 Subject: [PATCH] Removed bad characters in descriptions, changed system.nix checker invokation svn path=/nixos/trunk/; revision=9620 --- system/options.nix | 4 ++-- system/system.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/system/options.nix b/system/options.nix index a7ab7dee979..8cbd1171db7 100644 --- a/system/options.nix +++ b/system/options.nix @@ -318,7 +318,7 @@ description = " Use the trivial Mail Transfer Agent (MTA) ssmtp package to allow programs to send - e-mail. If you don't want to run a “real” MTA like + e-mail. If you don't want to run a ``real'' MTA like sendmail or postfix on your machine, set this option to true, and set the option @@ -1358,7 +1358,7 @@ root ALL=(ALL) SETENV: ALL default = false; description = " Whether to add the fonts provided by Ghostscript (such as - various URW fonts and the “Base-14” Postscript fonts) to the + various URW fonts and the ``Base-14'' Postscript fonts) to the list of system fonts, making them available to X11 applications. "; diff --git a/system/system.nix b/system/system.nix index 4ae2f091456..e5d3ca618f7 100644 --- a/system/system.nix +++ b/system/system.nix @@ -344,5 +344,5 @@ rec { ]; configurationName = config.boot.configurationName; }) (pkgs.getConfig ["checkConfigurationOptions"] false) - config.declarations configuration ; + optionDeclarations configuration ; }