Files
lix/tests
Eelco Dolstra d407d572fd * Some syntactic sugar for attribute sets: allow {x.y.z = ...;} as a
shorthand for {x = {y = {z = ...;};};}.  This is especially useful
  for NixOS configuration files, e.g.

    {
      services = {
        sshd = {
          enable = true;
          port = 2022;
        };
      };
    }

  can now be written as

    {
      services.sshd.enable = true;
      services.sshd.port = 2022;
    }

  However, it is currently not permitted to write
  
    {
      services.sshd = {enable = true;};
      services.sshd.port = 2022;
    }

  as this is considered a duplicate definition of `services.sshd'.
2009-05-15 12:35:23 +00:00
..
2009-03-25 16:11:04 +00:00
2009-03-18 16:36:13 +00:00
2007-08-13 13:15:02 +00:00
2007-01-29 14:23:09 +00:00
2006-03-01 14:26:03 +00:00
2006-07-21 13:21:43 +00:00
2008-12-03 16:15:38 +00:00
2006-03-01 12:51:18 +00:00
2007-08-13 13:15:02 +00:00
2008-12-03 16:15:38 +00:00
2008-08-04 16:16:49 +00:00
2008-08-04 16:16:49 +00:00
2007-08-13 13:15:02 +00:00
2006-07-21 13:21:43 +00:00
2008-06-15 15:10:03 +00:00
2006-03-01 12:51:18 +00:00