Clean up some option examples

This commit is contained in:
Eelco Dolstra
2013-10-30 18:47:43 +01:00
parent 0f8b1b1a5c
commit be5d3a59dd
8 changed files with 53 additions and 53 deletions
+5 -1
View File
@@ -59,7 +59,7 @@ in
};
nixpkgs.system = mkOption {
default = pkgs.stdenv.system;
type = types.str;
description = ''
Specifies the Nix platform type for which NixOS should be built.
If unset, it defaults to the platform type of your host system
@@ -70,4 +70,8 @@ in
};
};
config = {
nixpkgs.system = pkgs.stdenv.system;
};
}