* 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
wip/yesman
Eelco Dolstra 15 years ago
parent e86b066625
commit fc9111fadf
  1. 7
      modules/legacy.nix
  2. 7
      modules/module-list.nix
  3. 0
      modules/tasks/filesystems.nix
  4. 0
      modules/tasks/kbd.nix
  5. 0
      modules/tasks/lvm.nix
  6. 0
      modules/tasks/network-interfaces.nix
  7. 0
      modules/tasks/swap.nix
  8. 0
      modules/tasks/swraid.nix
  9. 0
      modules/tasks/tty-backgrounds-combine.sh
  10. 2
      modules/tasks/tty-backgrounds.nix

@ -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
];
}

@ -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
]

@ -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;
};
Loading…
Cancel
Save