Files
lix/src
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
..
2007-12-13 22:06:19 +00:00
2008-09-18 09:08:54 +00:00
2006-09-04 21:06:23 +00:00
2008-11-25 02:30:35 +00:00
2007-04-16 14:45:25 +00:00
2009-03-23 13:52:52 +00:00