nixpkgs/pkgs.nix
Eelco Dolstra 3514c5658b * Proper sysvinit boot/halt. At runlevel 2, creates login shells at
virtual consoles 0 and 1.  To shutdown, do `init 0' (`halt' and
  `shutdown' don't work because they call /sbin/init).

svn path=/nixu/trunk/; revision=803
2004-02-18 14:56:32 +00:00

10 lines
264 B
Nix

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