diff options
author | lassulus <lass@aidsballs.de> | 2015-04-07 20:47:09 +0200 |
---|---|---|
committer | tv <tv@shackspace.de> | 2015-05-19 23:15:56 +0200 |
commit | d540df1d3875316dbd203d4b002eb2cc834a3b99 (patch) | |
tree | ea2c4146bf26fa1c40ba7fc52b349ac5f487529e /modules/urxvtd.nix | |
parent | 08b5a4eefc01398519761075fefad8966d4ab72d (diff) |
module urxvtd: lift environment
Diffstat (limited to 'modules/urxvtd.nix')
-rw-r--r-- | modules/urxvtd.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/urxvtd.nix b/modules/urxvtd.nix index ca21c6213..3f3fee157 100644 --- a/modules/urxvtd.nix +++ b/modules/urxvtd.nix @@ -33,10 +33,12 @@ with lib; description = "urxvt terminal daemon"; wantedBy = [ "multi-user.target" ]; restartIfChanged = false; + environment = { + URXVT_PERL_LIB = "${urxvt}/lib/urxvt/perl"; + }; serviceConfig = { Restart = "always"; User = user; - Environment = "URXVT_PERL_LIB=${urxvt}/lib/urxvt/perl"; ExecStart = "${urxvt}/bin/urxvtd"; }; }; |