mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Making the samba services get the timezone.
svn path=/nixos/trunk/; revision=27022
This commit is contained in:
parent
6739162d9a
commit
0af7c7bdcb
1 changed files with 4 additions and 1 deletions
|
@ -69,7 +69,10 @@ let
|
|||
startOn = "started samba";
|
||||
stopOn = "stopping samba";
|
||||
|
||||
environment = { LD_LIBRARY_PATH = nssModulesPath; };
|
||||
environment = {
|
||||
LD_LIBRARY_PATH = nssModulesPath;
|
||||
TZ = config.time.timeZone;
|
||||
};
|
||||
|
||||
exec = "${samba}/sbin/${appName} ${args}";
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue