nixpkgs/modules
Eelco Dolstra c45cf3a28e * In the jobs attribute, support a more high-level way of specifying
jobs, e.g. (from the nscd job)

    { name = "nscd";

      description = "Name Service Cache Daemon";

      startOn = "startup";
      stopOn = "shutdown";

      environment = { LD_LIBRARY_PATH = nssModulesPath; };
        
      preStart =
        ''
          mkdir -m 0755 -p /var/run/nscd
          mkdir -m 0755 -p /var/db/nscd
        '';

      exec = "${pkgs.glibc}/sbin/nscd -f ${./nscd.conf} -d 2> /dev/null";
    };

  The Upstart job is generated from this.  The main goal is to provide
  some abstraction from the Upstart syntax.  For instance, this should
  make it easier to upgrade to newer versions of Upstart, to switch to
  an entirely different process management system (e.g. initng or
  launchd), or to test a job independantly from Upstart.  (However the
  startOn and stopOn attributes are tied to Upstart's event model.)

svn path=/nixos/branches/modular-nixos/; revision=16376
2009-07-15 15:24:11 +00:00
..
config Make the Liberation Fonts available by default. 2009-07-09 12:10:58 +00:00
hardware * Urgh, this should have been in commit r16350. 2009-07-14 13:28:50 +00:00
installer * Include the NixOS manpages in the system environment. Actually 2009-07-14 16:27:46 +00:00
misc Adding back passthru functionality 2009-07-08 09:10:48 +00:00
programs * Don't put /etc/nixos/nixos in ~/.nix-defexpr. 2009-07-15 08:45:29 +00:00
security * kdm needs the "kde" PAM module, but you only get it when KDE is 2009-05-29 14:57:31 +00:00
services * In the jobs attribute, support a more high-level way of specifying 2009-07-15 15:24:11 +00:00
system * In the jobs attribute, support a more high-level way of specifying 2009-07-15 15:24:11 +00:00
tasks * Declare the type of jobs. 2009-07-15 13:41:00 +00:00
virtualisation * Set the default gateway. 2009-06-24 12:16:06 +00:00
module-list.mask Replace special rule by a module-list.mask file which enumerates all 2009-06-11 17:59:47 +00:00
module-list.nix * Refactoring the Upstart module. Got rid of job.extraEtc, it's 2009-07-15 09:06:36 +00:00