* My grep skills are lacking.

svn path=/nixos/trunk/; revision=30335
This commit is contained in:
Eelco Dolstra 2011-11-08 16:39:13 +00:00
parent 51a5b775a6
commit dd28c62879
2 changed files with 5 additions and 6 deletions

@ -36,7 +36,6 @@ in
# Profiles of this basic installation CD.
../../profiles/all-hardware.nix
../../profiles/base.nix
# ../../profiles/minimal.nix # should include this, but then the graphical CD will also get it.
../../profiles/installation-device.nix
];

@ -1,11 +1,11 @@
# This module defines a small NixOS installation CD. It does not
# contain any graphical stuff.
{config, pkgs, ...}:
{ config, pkgs, ... }:
{
require = [
./installation-cd-base.nix
../../profiles/minimal.nix
];
require =
[ ./installation-cd-base.nix
../../profiles/minimal.nix
];
}