diff options
Diffstat (limited to 'modules')
-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"; }; }; |