nixpkgs/modules/tasks
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
..
filesystems.nix * Added an option to disable fsck on particular filesystems. 2010-09-13 11:46:35 +00:00
kbd.nix * Don't do "kbd_mode -u" because it kicks the X server out of raw 2010-04-20 14:35:12 +00:00
lvm.nix * --mknodes is no longer needed (in fact it might interfere with 2010-01-10 20:07:23 +00:00
network-interfaces.nix * Use "ip" instead of "ifconfig" for setting up network interfaces, 2011-03-11 14:50:11 +00:00
swraid.nix * Activate software RAID devices from udev. This makes the swraid 2010-05-16 20:40:04 +00:00
tty-backgrounds-combine.sh * tty-backgrounds: don't do a setcfg action on the console if the 2010-06-01 18:30:17 +00:00
tty-backgrounds.nix Trying to improve the message hit by new users, if they use the 2.6.36 2010-11-06 18:13:48 +00:00