mirror of
https://github.com/nix-community/home-manager
synced 2024-11-23 03:29:45 +01:00
xscreensaver: fix type of systemd Service.Environment
This commit is contained in:
parent
7578176649
commit
b6204ff489
1 changed files with 1 additions and 1 deletions
|
@ -60,7 +60,7 @@ in {
|
|||
|
||||
Service = {
|
||||
ExecStart = "${cfg.package}/bin/xscreensaver -no-splash";
|
||||
Environment = "PATH=${makeBinPath [ cfg.package ]}";
|
||||
Environment = [ "PATH=${makeBinPath [ cfg.package ]}" ];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
|
Loading…
Reference in a new issue