nixpkgs/system
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
..
activate-configuration.sh * An option nix.useChroot to enable chroot builds in NixOS. 2007-11-05 11:19:51 +00:00
config.nix * Converted the option declarations in options.nix to nested attribute 2007-11-09 18:12:23 +00:00
fontdir.nix Some more corrections to fontDir; now suitable as fontPath for Xvnc 2007-10-05 12:51:05 +00:00
fonts.nix * Option fonts.enableGhostscriptFonts to make the Ghostscript fonts 2007-10-03 15:44:30 +00:00
ids.nix * make-etc / activate-configuration: allow /etc files to be installed 2007-08-16 15:09:06 +00:00
modprobe * Generate a wrapper around modprobe that sets MODULE_DIR. This is 2007-03-04 01:16:24 +00:00
options.nix * Converted the option declarations in options.nix to nested attribute 2007-11-09 18:12:23 +00:00
switch-to-configuration.sh * /var/run/current-system symlinks to the top-level path of the system 2007-03-20 13:01:53 +00:00
system.nix * Converted the option declarations in options.nix to nested attribute 2007-11-09 18:12:23 +00:00
system.sh * Allow Upstart's init to be upgraded in a running system. 2007-09-27 12:24:05 +00:00
users-groups.nix * make-etc / activate-configuration: allow /etc files to be installed 2007-08-16 15:09:06 +00:00