2007-03-04 01:16:24 +00:00
|
|
|
{config, pkgs, nix, modprobe, nssModulesPath}:
|
2006-12-11 15:32:10 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
makeJob = import ../upstart-jobs/make-job.nix {
|
|
|
|
inherit (pkgs) runCommand;
|
|
|
|
};
|
|
|
|
|
2006-12-16 18:24:49 +00:00
|
|
|
optional = option: service:
|
2006-12-18 15:16:20 +00:00
|
|
|
if config.get option then [(makeJob service)] else [];
|
2006-12-16 18:24:49 +00:00
|
|
|
|
2007-04-04 18:10:38 +01:00
|
|
|
requiredTTYs =
|
|
|
|
(config.get ["services" "mingetty" "ttys"])
|
|
|
|
++ [10] /* !!! sync with syslog.conf */ ;
|
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
in
|
|
|
|
|
|
|
|
import ../upstart-jobs/gather.nix {
|
|
|
|
inherit (pkgs) runCommand;
|
|
|
|
|
|
|
|
jobs = map makeJob [
|
|
|
|
# Syslogd.
|
|
|
|
(import ../upstart-jobs/syslogd.nix {
|
|
|
|
inherit (pkgs) sysklogd;
|
|
|
|
})
|
|
|
|
|
2006-12-13 12:17:38 +00:00
|
|
|
# The udev daemon creates devices nodes and runs programs when
|
|
|
|
# hardware events occur.
|
|
|
|
(import ../upstart-jobs/udev.nix {
|
2007-03-03 23:20:08 +00:00
|
|
|
inherit (pkgs) stdenv writeText substituteAll udev procps;
|
2007-01-15 09:20:34 +00:00
|
|
|
inherit (pkgs.lib) cleanSource;
|
2007-03-03 23:20:08 +00:00
|
|
|
firmwareDirs =
|
|
|
|
(if config.get ["networking" "enableIntel2200BGFirmware"] then [pkgs.ipw2200fw] else []);
|
2006-12-13 12:17:38 +00:00
|
|
|
})
|
|
|
|
|
2006-12-24 01:07:28 +00:00
|
|
|
# Makes LVM logical volumes available.
|
|
|
|
(import ../upstart-jobs/lvm.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
|
|
|
inherit (pkgs) lvm2;
|
2006-12-24 01:07:28 +00:00
|
|
|
})
|
|
|
|
|
2007-01-11 00:40:28 +00:00
|
|
|
# Activate software RAID arrays.
|
|
|
|
(import ../upstart-jobs/swraid.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
|
|
|
inherit (pkgs) mdadm;
|
2007-01-11 00:40:28 +00:00
|
|
|
})
|
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
# Hardware scan; loads modules for PCI devices.
|
|
|
|
(import ../upstart-jobs/hardware-scan.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
2006-12-22 23:34:42 +00:00
|
|
|
doHardwareScan = config.get ["boot" "hardwareScan"];
|
|
|
|
kernelModules = config.get ["boot" "kernelModules"];
|
2006-12-11 15:32:10 +00:00
|
|
|
})
|
|
|
|
|
2006-12-21 14:22:40 +00:00
|
|
|
# Mount file systems.
|
|
|
|
(import ../upstart-jobs/filesystems.nix {
|
2006-12-21 20:08:15 +00:00
|
|
|
inherit (pkgs) utillinux e2fsprogs;
|
2006-12-21 14:22:40 +00:00
|
|
|
fileSystems = config.get ["fileSystems"];
|
|
|
|
})
|
|
|
|
|
2006-12-21 01:07:23 +00:00
|
|
|
# Swapping.
|
|
|
|
(import ../upstart-jobs/swap.nix {
|
2007-01-10 13:07:57 +00:00
|
|
|
inherit (pkgs) utillinux library;
|
2006-12-21 01:07:23 +00:00
|
|
|
swapDevices = config.get ["swapDevices"];
|
|
|
|
})
|
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
# Network interfaces.
|
|
|
|
(import ../upstart-jobs/network-interfaces.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
2007-05-24 15:50:17 +01:00
|
|
|
inherit (pkgs) nettools wirelesstools bash writeText;
|
2007-02-12 16:00:55 +00:00
|
|
|
nameservers = config.get ["networking" "nameservers"];
|
|
|
|
defaultGateway = config.get ["networking" "defaultGateway"];
|
|
|
|
interfaces = config.get ["networking" "interfaces"];
|
2007-05-24 15:50:17 +01:00
|
|
|
localCommands = config.get ["networking" "localCommands"];
|
2006-12-11 15:32:10 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
# Nix daemon - required for multi-user Nix.
|
|
|
|
(import ../upstart-jobs/nix-daemon.nix {
|
|
|
|
inherit nix;
|
2007-02-22 18:04:18 +00:00
|
|
|
inherit (pkgs) openssl;
|
2006-12-11 15:32:10 +00:00
|
|
|
})
|
|
|
|
|
2007-01-10 17:09:00 +00:00
|
|
|
# Cron daemon.
|
|
|
|
(import ../upstart-jobs/cron.nix {
|
|
|
|
inherit (pkgs) cron;
|
|
|
|
})
|
|
|
|
|
2007-01-11 23:55:25 +00:00
|
|
|
# Name service cache daemon.
|
|
|
|
(import ../upstart-jobs/nscd.nix {
|
|
|
|
inherit (pkgs) glibc pwdutils;
|
2007-01-15 17:19:41 +00:00
|
|
|
inherit nssModulesPath;
|
2007-01-11 23:55:25 +00:00
|
|
|
})
|
|
|
|
|
2007-04-04 18:10:38 +01:00
|
|
|
# Console font and keyboard maps.
|
|
|
|
(import ../upstart-jobs/kbd.nix {
|
|
|
|
inherit (pkgs) glibc kbd gzip;
|
|
|
|
ttyNumbers = requiredTTYs;
|
|
|
|
defaultLocale = config.get ["i18n" "defaultLocale"];
|
|
|
|
consoleFont = config.get ["i18n" "consoleFont"];
|
|
|
|
consoleKeyMap = config.get ["i18n" "consoleKeyMap"];
|
|
|
|
})
|
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
# Handles the maintenance/stalled event (single-user shell).
|
|
|
|
(import ../upstart-jobs/maintenance-shell.nix {
|
|
|
|
inherit (pkgs) bash;
|
|
|
|
})
|
|
|
|
|
|
|
|
# Ctrl-alt-delete action.
|
|
|
|
(import ../upstart-jobs/ctrl-alt-delete.nix)
|
|
|
|
|
|
|
|
]
|
|
|
|
|
2007-02-12 16:00:55 +00:00
|
|
|
# DHCP client.
|
|
|
|
++ optional ["networking" "useDHCP"]
|
|
|
|
(import ../upstart-jobs/dhclient.nix {
|
2007-02-22 14:26:53 +00:00
|
|
|
inherit (pkgs) nettools dhcp lib;
|
|
|
|
interfaces = config.get ["networking" "interfaces"];
|
2007-02-12 16:00:55 +00:00
|
|
|
})
|
|
|
|
|
2007-03-16 16:41:38 +00:00
|
|
|
# DHCP server.
|
|
|
|
++ optional ["services" "dhcpd" "enable"]
|
|
|
|
(import ../upstart-jobs/dhcpd.nix {
|
|
|
|
inherit (pkgs) dhcp;
|
|
|
|
configFile = config.get ["services" "dhcpd" "configFile"];
|
|
|
|
interfaces = config.get ["services" "dhcpd" "interfaces"];
|
|
|
|
})
|
|
|
|
|
2006-12-16 18:24:49 +00:00
|
|
|
# SSH daemon.
|
|
|
|
++ optional ["services" "sshd" "enable"]
|
|
|
|
(import ../upstart-jobs/sshd.nix {
|
2007-01-07 10:19:16 +00:00
|
|
|
inherit (pkgs) writeText openssh glibc pwdutils;
|
|
|
|
inherit (pkgs.xorg) xauth;
|
2007-01-15 17:19:41 +00:00
|
|
|
inherit nssModulesPath;
|
2007-01-07 10:19:16 +00:00
|
|
|
forwardX11 = config.get ["services" "sshd" "forwardX11"];
|
2007-01-10 17:19:17 +00:00
|
|
|
allowSFTP = config.get ["services" "sshd" "allowSFTP"];
|
2006-12-16 18:24:49 +00:00
|
|
|
})
|
|
|
|
|
2006-12-21 23:43:17 +00:00
|
|
|
# NTP daemon.
|
|
|
|
++ optional ["services" "ntp" "enable"]
|
|
|
|
(import ../upstart-jobs/ntpd.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
|
|
|
inherit (pkgs) ntp glibc pwdutils writeText;
|
2006-12-21 23:43:17 +00:00
|
|
|
servers = config.get ["services" "ntp" "servers"];
|
|
|
|
})
|
|
|
|
|
2006-12-16 18:24:49 +00:00
|
|
|
# X server.
|
|
|
|
++ optional ["services" "xserver" "enable"]
|
|
|
|
(import ../upstart-jobs/xserver.nix {
|
2007-02-26 23:11:32 +00:00
|
|
|
inherit config;
|
2007-03-06 00:07:00 +00:00
|
|
|
inherit (pkgs) stdenv writeText lib xterm slim xorg mesa
|
2007-04-02 16:01:09 +01:00
|
|
|
gnome compiz feh kdebase kdelibs xkeyboard_config
|
2007-05-28 16:39:25 +01:00
|
|
|
openssh x11_ssh_askpass nvidiaDrivers;
|
|
|
|
libX11 = pkgs.xlibs.libX11;
|
|
|
|
libXext = pkgs.xlibs.libXext;
|
2007-03-30 13:59:43 +01:00
|
|
|
fontDirectories = import ../system/fonts.nix {inherit pkgs;};
|
2006-12-16 18:24:49 +00:00
|
|
|
})
|
|
|
|
|
2006-12-18 19:20:03 +00:00
|
|
|
# Apache httpd.
|
|
|
|
++ optional ["services" "httpd" "enable"]
|
|
|
|
(import ../upstart-jobs/httpd.nix {
|
2006-12-18 19:46:48 +00:00
|
|
|
inherit config pkgs;
|
2006-12-18 19:20:03 +00:00
|
|
|
inherit (pkgs) glibc pwdutils;
|
|
|
|
})
|
|
|
|
|
2007-05-28 16:39:25 +01:00
|
|
|
# Samba service.
|
|
|
|
++ optional ["services" "samba" "enable"]
|
|
|
|
(import ../upstart-jobs/samba.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (pkgs) glibc pwdutils samba;
|
|
|
|
})
|
|
|
|
|
2007-04-02 18:31:58 +01:00
|
|
|
# CUPS (printing) daemon.
|
|
|
|
++ optional ["services" "printing" "enable"]
|
|
|
|
(import ../upstart-jobs/cupsd.nix {
|
|
|
|
inherit (pkgs) writeText cups;
|
|
|
|
})
|
|
|
|
|
2007-03-01 00:36:00 +00:00
|
|
|
# ALSA sound support.
|
|
|
|
++ optional ["sound" "enable"]
|
|
|
|
(import ../upstart-jobs/alsa.nix {
|
2007-03-04 01:16:24 +00:00
|
|
|
inherit modprobe;
|
|
|
|
inherit (pkgs) alsaUtils;
|
2007-03-01 00:36:00 +00:00
|
|
|
})
|
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
# Handles the reboot/halt events.
|
|
|
|
++ (map
|
|
|
|
(event: makeJob (import ../upstart-jobs/halt.nix {
|
|
|
|
inherit (pkgs) bash utillinux;
|
|
|
|
inherit event;
|
|
|
|
}))
|
|
|
|
["reboot" "halt" "system-halt" "power-off"]
|
|
|
|
)
|
|
|
|
|
|
|
|
# The terminals on ttyX.
|
|
|
|
++ (map
|
|
|
|
(ttyNumber: makeJob (import ../upstart-jobs/mingetty.nix {
|
2007-01-08 22:41:41 +00:00
|
|
|
inherit (pkgs) mingetty;
|
|
|
|
inherit ttyNumber;
|
|
|
|
loginProgram = "${pkgs.pam_login}/bin/login";
|
2006-12-11 15:32:10 +00:00
|
|
|
}))
|
2006-12-18 15:41:18 +00:00
|
|
|
(config.get ["services" "mingetty" "ttys"])
|
2006-12-11 15:32:10 +00:00
|
|
|
)
|
|
|
|
|
2007-01-08 22:41:41 +00:00
|
|
|
# Transparent TTY backgrounds.
|
|
|
|
++ optional ["services" "ttyBackgrounds" "enable"]
|
|
|
|
(import ../upstart-jobs/tty-backgrounds.nix {
|
|
|
|
inherit (pkgs) stdenv splashutils;
|
|
|
|
|
|
|
|
backgrounds =
|
|
|
|
|
|
|
|
let
|
|
|
|
|
|
|
|
specificThemes =
|
|
|
|
config.get ["services" "ttyBackgrounds" "defaultSpecificThemes"]
|
|
|
|
++ config.get ["services" "ttyBackgrounds" "specificThemes"];
|
|
|
|
|
|
|
|
overridenTTYs = map (x: x.tty) specificThemes;
|
|
|
|
|
|
|
|
# Use the default theme for all the mingetty ttys and for the
|
|
|
|
# syslog tty, except those for which a specific theme is
|
|
|
|
# specified.
|
|
|
|
defaultTTYs =
|
|
|
|
pkgs.library.filter (x: !(pkgs.library.elem x overridenTTYs)) requiredTTYs;
|
|
|
|
|
|
|
|
in
|
|
|
|
(map (ttyNumber: {
|
|
|
|
tty = ttyNumber;
|
|
|
|
theme = config.get ["services" "ttyBackgrounds" "defaultTheme"];
|
|
|
|
}) defaultTTYs)
|
|
|
|
++ specificThemes;
|
|
|
|
|
|
|
|
})
|
|
|
|
|
2006-12-18 17:41:46 +00:00
|
|
|
# User-defined events.
|
|
|
|
++ (map makeJob (config.get ["services" "extraJobs"]))
|
|
|
|
|
2006-12-18 19:46:48 +00:00
|
|
|
# For the built-in logd job.
|
2007-06-08 16:41:12 +01:00
|
|
|
++ [(makeJob { jobDrv = pkgs.upstart; })];
|
2006-12-18 19:46:48 +00:00
|
|
|
|
2006-12-11 15:32:10 +00:00
|
|
|
}
|