From 8525936f807620e3d98fe4865033bdcd6932a362 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Thu, 14 Jan 2016 13:07:56 +0100 Subject: [PATCH] nixos: Document "jobs" option removal --- nixos/doc/manual/release-notes/rl-unstable.xml | 6 ++++++ nixos/modules/rename.nix | 1 + 2 files changed, 7 insertions(+) diff --git a/nixos/doc/manual/release-notes/rl-unstable.xml b/nixos/doc/manual/release-notes/rl-unstable.xml index 9853e7f9d703..48771d8c2251 100644 --- a/nixos/doc/manual/release-notes/rl-unstable.xml +++ b/nixos/doc/manual/release-notes/rl-unstable.xml @@ -47,6 +47,12 @@ following incompatible changes: + + jobs NixOS option has been removed. It served as + compatibility layer between Upstart jobs and SystemD services. All services + have been rewritten to use systemd.services + + wmiimenu is removed, as it has been removed by the developers upstream. Use wimenu diff --git a/nixos/modules/rename.nix b/nixos/modules/rename.nix index 491e6fa7d0cd..010d44c40d19 100644 --- a/nixos/modules/rename.nix +++ b/nixos/modules/rename.nix @@ -26,6 +26,7 @@ with lib; (mkRenamedOptionModule [ "services" "sslh" "host" ] [ "services" "sslh" "listenAddress" ]) (mkRenamedOptionModule [ "services" "statsd" "host" ] [ "services" "statsd" "listenAddress" ]) (mkRenamedOptionModule [ "services" "subsonic" "host" ] [ "services" "subsonic" "listenAddress" ]) + (mkRenamedOptionModule [ "jobs" ] [ "systemd" "services" ]) # Old Grub-related options. (mkRenamedOptionModule [ "boot" "initrd" "extraKernelModules" ] [ "boot" "initrd" "kernelModules" ])