mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
3514c5658b
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
10 lines
264 B
Nix
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];
|
|
}
|