91a5fe9eb0
device should be enabled on the host in order for the UML machine to be able to talk to the Internet. svn path=/nixu/trunk/; revision=806
11 lines
286 B
Nix
11 lines
286 B
Nix
rec {
|
|
inherit (import pkgs/system/i686-linux.nix)
|
|
stdenv bash coreutils findutils utillinux sysvinit e2fsprogs
|
|
nettools nix;
|
|
|
|
boot = (import ./boot) {inherit stdenv bash coreutils findutils
|
|
utillinux sysvinit e2fsprogs nettools nix;};
|
|
|
|
everything = [boot sysvinit];
|
|
}
|