diff --git a/modules/system/upstart/make-job.nix b/modules/system/upstart/make-job.nix index 26cce3af2a96..319e58a0a5cd 100644 --- a/modules/system/upstart/make-job.nix +++ b/modules/system/upstart/make-job.nix @@ -21,10 +21,6 @@ # system path. extraPath = if job ? extraPath then job.extraPath else []; - # Allow jobs to declare extra configuration for Apache (e.g. Nagios - # declaring its web interface). - extraHttpdConfig = if job ? extraHttpdConfig then job.extraHttpdConfig else ""; - # Allow jobs to declare user accounts that should be created. users = if job ? users then job.users else []; diff --git a/modules/system/upstart/upstart.nix b/modules/system/upstart/upstart.nix index 699fcc4c2f4f..e190c23523f5 100644 --- a/modules/system/upstart/upstart.nix +++ b/modules/system/upstart/upstart.nix @@ -81,7 +81,6 @@ in environment.extraPackages = pkgs.lib.concatLists (map (job: job.extraPath) jobs); - users.extraUsers = pkgs.lib.concatLists (map (job: job.users) jobs);