nixpkgs/modules
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
..
config * Generically handle the case where $out/share/mime/packages or one of 2011-02-05 06:58:15 +00:00
hardware intel wifi 6000 firmware 2011-02-10 17:36:56 +00:00
installer * grub-mkimage now requires a format flag. Also, the "sh" module has 2011-03-09 16:26:03 +00:00
misc Merging from trunk 2010-12-17 14:59:04 +00:00
profiles * We don't really need a display manager on the installation CD. Just 2011-02-17 14:38:02 +00:00
programs * Set the checkwinsize option in interactive shells. Otherwise 2011-02-08 14:58:41 +00:00
security To prevent glibc bug exploitation, make setuid-wrappers unreadable to non-root users 2010-10-20 09:29:02 +00:00
services * Enable FTP connection tracking in the firewall. 2011-03-11 13:34:17 +00:00
system * Mount /dev/cgroup to enable cgroup support. 2011-02-25 14:31:15 +00:00
tasks * Use "ip" instead of "ifconfig" for setting up network interfaces, 2011-03-11 14:50:11 +00:00
testing * Add a test for the firewall. 2011-03-11 13:38:52 +00:00
virtualisation * Fix `nixos-rebuild build-vm-with-bootloader': QEMU now requires the 2011-03-10 11:39:37 +00:00
module-list.nix * Add a module for doing Network Address Translation. 2011-03-10 12:08:39 +00:00
rename.nix * Make `services.sshd.enable' an alias rather than an obsolete option. 2010-12-14 11:48:07 +00:00