Find a file
Eelco Dolstra 62c1f0ddcc * Converted the option declarations in options.nix to nested attribute
sets that match the hierarchical structure of the options.  So
  instead of

    {
      name = ["time" "timeZone"];
      default = "CET";
      example = "America/New_York";
      description = "The time zone used when displaying times and dates.";
    }

  we have

    time = {
      timeZone = {
        default = "CET";
        example = "America/New_York";
        description = "The time zone used when displaying times and dates.";
      };
    };

  And instead of `config.get ["time" "timeZone"]' you can now just say
  `config.time.timeZone'.  Furthermore, this option representation
  will allow option structures with repetition (such as in
  networking.interfaces or services.httpd.subservices) to be defined.

svn path=/nixos/trunk/; revision=9618
2007-11-09 18:12:23 +00:00
boot * Make fsck shut up about missing fstab. Contributed 2007-11-01 15:58:01 +00:00
configuration * Configuration options networking.defaultMailServer to enable direct mail 2007-11-08 18:15:12 +00:00
doc/manual Added user configuration chapter - currently about Compiz. 2007-11-05 21:17:16 +00:00
etc * Configuration options networking.defaultMailServer to enable direct mail 2007-11-08 18:15:12 +00:00
helpers * make-etc / activate-configuration: allow /etc files to be installed 2007-08-16 15:09:06 +00:00
installer Added xfs; fixed nixos-checkout 2007-11-05 08:54:30 +00:00
system * Converted the option declarations in options.nix to nested attribute 2007-11-09 18:12:23 +00:00
upstart-jobs Added a silent mention of evdev in xorg.conf, but removed actual dependency on it. 2007-11-09 13:55:07 +00:00
default.nix * Doh doh doh! 2007-10-19 19:33:15 +00:00
README * Readme is obsolete now. 2007-02-06 21:38:59 +00:00
STABLE * Version number, stable marker. 2006-11-04 11:27:08 +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://nix.cs.uu.nl/nixos and in the manual in doc/manual.