1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/lib
Eelco Dolstra c958902d44 * Added an option "nixpkgs.system" to specify the system type for
which NixOS should be built.  This is useful in NixOS network
  specifications, because it allows machines in the network to have
  different types, e.g.,

    {
      machine1 =
        { config, pkgs, ... }:
        { nixpkgs.system = "i686-linux";
          ... other config ...
        };

      machine2 =
        { config, pkgs, ... }:
        { nixpkgs.system = "x86_64-linux";
          ... other config ...
        };
    }

  It can also be useful in distributed NixOS tests.

svn path=/nixos/trunk/; revision=24823
2010-11-23 16:07:00 +00:00
..
test-driver test-driver: Add `startJob' method. 2010-10-10 22:37:45 +00:00
build-vms.nix - Added nixos-build-vms command, which builds a virtual network from a network.nix expression (also used by nixos-deploy-network) 2010-10-21 22:50:12 +00:00
eval-config.nix * Added an option "nixpkgs.system" to specify the system type for 2010-11-23 16:07:00 +00:00
from-env.nix
make-iso9660-image.nix
make-iso9660-image.sh svn path=/nixos/branches/boot-order/; revision=22367 2010-06-21 22:00:48 +00:00
make-squashfs.nix
make-system-tarball.nix
make-system-tarball.sh
qemu-flags.nix * The installer test lost the QEMU flags to set up the NIC to talk to 2010-05-27 12:20:37 +00:00
testing.nix * Require KVM. 2010-08-29 23:24:54 +00:00
unpack-theme.nix
unpack-theme.sh