1e607c9221
two main steps: 1 - first build everything (nix-push) 2 - install everything on a seperate disk/machine (nix-pull) svn path=/nixu/trunk/; revision=3291
14 lines
597 B
Nix
14 lines
597 B
Nix
rec {
|
|
inherit (import /nixpkgs/trunk/pkgs/system/i686-linux.nix)
|
|
stdenv kernel bash coreutils findutils utillinux sysvinit e2fsprogs
|
|
nettools nix subversion gcc wget which vim less screen openssh binutils
|
|
strace shadowutils iputils gnumake curl gnused gnutar gnugrep gzip mingetty;
|
|
|
|
boot = (import ./boot) {inherit stdenv kernel bash coreutils findutils
|
|
utillinux sysvinit e2fsprogs nettools nix subversion gcc wget which vim
|
|
less screen openssh binutils strace shadowutils iputils gnumake curl
|
|
gnused gnutar gnugrep gzip mingetty;};
|
|
|
|
everything = [boot sysvinit];
|
|
}
|