Nix Packages collection & NixOS
Go to file
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
doc doc: Fix the manual. 2011-03-09 10:38:18 +00:00
gui Add the base of a highly experimental gui for NixOS. 2009-09-26 23:15:19 +00:00
lib * Use "ip" instead of "ifconfig" for setting up network interfaces, 2011-03-11 14:50:11 +00:00
maintainers Clean-up option-usages.nix by using recent library functions. 2009-09-29 16:42:22 +00:00
modules * Use "ip" instead of "ifconfig" for setting up network interfaces, 2011-03-11 14:50:11 +00:00
tests * Add a test for the firewall. 2011-03-11 13:38:52 +00:00
COPYING * Add a license, finally :-) 2010-05-28 11:48:41 +00:00
default.nix * Added a command `nixos-rebuild build-vm-with-bootloader'. This is 2010-09-13 12:34:58 +00:00
README * URL updates. 2008-05-09 15:08:43 +00:00
release.nix svn path=/nixos/trunk/; revision=26278 2011-03-11 13:59:01 +00:00
VERSION * Version number, stable marker. 2006-11-04 11:27:08 +00:00

*** NixOS ***

NixOS is a Linux distribution based on the purely functional package
management system Nix.  More information can be found at
http://nixos.org/nixos and in the manual in doc/manual.