* Move various system initialisation tasks (e.g. mounting filesystems,

initialising network interfaces, etc.) to modules/tasks.  This
  follows the Upstart terminology: a service is a job that doesn't
  usually terminate (e.g. a daemon), while a task is a job that does
  some work and then exits.

svn path=/nixos/branches/modular-nixos/; revision=15771
This commit is contained in:
Eelco Dolstra 2009-05-28 15:03:05 +00:00
parent e86b066625
commit fc9111fadf
10 changed files with 8 additions and 8 deletions

View file

@ -4,14 +4,7 @@
../system/nixos-environment.nix
../system/nixos-installer.nix
../upstart-jobs/cron/locate.nix
../upstart-jobs/filesystems.nix
../upstart-jobs/kbd.nix
../upstart-jobs/ldap
../upstart-jobs/lvm.nix
../upstart-jobs/network-interfaces.nix
../upstart-jobs/pcmcia.nix
../upstart-jobs/swap.nix
../upstart-jobs/swraid.nix
../upstart-jobs/tty-backgrounds.nix
];
}

View file

@ -134,4 +134,11 @@
# the argument named `runCommand' required by the function is missing
./system/upstart/tools.nix
./system/upstart/upstart.nix
./tasks/filesystems.nix
./tasks/kbd.nix
./tasks/lvm.nix
./tasks/network-interfaces.nix
./tasks/swap.nix
./tasks/swraid.nix
./tasks/tty-backgrounds.nix
]

View file

@ -100,7 +100,7 @@ let
themes = map (x: if x ? theme then (unpackTheme x.theme) else "default") backgrounds;
};
unpackTheme = theme: import ../helpers/unpack-theme.nix {
unpackTheme = theme: import ../../helpers/unpack-theme.nix {
inherit stdenv theme;
};