nixpkgs/pkgs.nix
Eelco Dolstra 1e87e75d07 * Use sysvinit's init to start the system. This has the happy
side-effect of initialising the console properly (i.e., enabling
  Ctrl-[C, Z]).

svn path=/nixu/trunk/; revision=801
2004-02-18 10:56:07 +00:00

10 lines
264 B
Nix

rec {
inherit (import pkgs/system/i686-linux.nix)
stdenv bash coreutils findutils utillinux sysvinit e2fsprogs nix;
init = (import ./init)
{inherit stdenv bash coreutils findutils utillinux sysvinit e2fsprogs nix;};
everything = [init sysvinit];
}