svn path=/nixos/trunk/; revision=18599

This commit is contained in:
Eelco Dolstra 2009-11-24 15:05:08 +00:00
parent 88b26c47ad
commit e76f14714b
2 changed files with 1 additions and 2 deletions

View file

@ -32,7 +32,6 @@ in
src = ./bashrc.sh;
bash = pkgs.bash;
systemPath = config.system.path;
wrapperDir = config.security.wrapperDir;
modulesTree = config.system.modulesTree;
shellInit = config.environment.shellInit;

View file

@ -10,7 +10,7 @@ let
systemCronJobsFile = pkgs.writeText "system-crontab"
''
SHELL=${pkgs.bash}/bin/bash
PATH=/var/run/current-system/sw/bin:/var/run/current-system/sw/sbin
PATH=${config.system.path}/bin:${config.system.path}/sbin
MAILTO="${config.services.cron.mailto}"
${pkgs.lib.concatStrings (map (job: job + "\n") config.services.cron.systemCronJobs)}
'';