nixpkgs/lib
Eelco Dolstra 8ce36ffb3a * Use "ip" instead of "ifconfig" for setting up network interfaces,
since the latter is rather deprecated and has been unmaintained
  since 2001.  Note that "ip" doesn't know about classful addressing,
  so you can no longer get away with not specifying the subnet mask
  for explicitly configured interfaces.  So if you had

    networking.interfaces =
      [ { name = "eth0"; ipAddress = "192.168.1.1"; } ];

  this should be changed to

    networking.interfaces =
      [ { name = "eth0";
          ipAddress = "192.168.1.1";
          subnetMask = "255.255.255.0";
        }
     ];

  otherwise you end up with a subnet mask of 255.255.255.255.

svn path=/nixos/trunk/; revision=26279
2011-03-11 14:50:11 +00:00
..
test-driver * The vde_switch startup code was reading from the wrong filehandle, 2011-02-22 10:41:11 +00:00
build-vms.nix * Use "ip" instead of "ifconfig" for setting up network interfaces, 2011-03-11 14:50:11 +00:00
eval-config.nix Updating from trunk (specially for the enableFontDir option, as it was not up 2010-11-26 14:16:12 +00:00
from-env.nix adding two new options: 2010-04-28 14:55:26 +00:00
make-iso9660-image.nix * Modularise the building of the installation CD/DVD. The module 2009-06-05 13:35:27 +00:00
make-iso9660-image.sh svn path=/nixos/branches/boot-order/; revision=22367 2010-06-21 22:00:48 +00:00
make-squashfs.nix * A function for generating squashfs filesystem images. 2009-06-10 13:40:35 +00:00
make-system-tarball.nix Updating the system-tarball work, having just tested that of the fuloong2f. 2010-09-08 16:53:36 +00:00
make-system-tarball.sh First attempt at trying to get a tarball of a bootable nixos system. 2010-02-15 23:27:51 +00:00
qemu-flags.nix * Use vde_switch instead of QEMU's multicast feature to tie QEMU VMs 2011-01-12 18:47:23 +00:00
testing.nix * Doh! Exceptions outside of subtests were silently ignored. 2011-02-15 15:04:17 +00:00
unpack-theme.nix * helpers -> lib. 2009-05-29 14:46:27 +00:00
unpack-theme.sh * helpers -> lib. 2009-05-29 14:46:27 +00:00