mirror of
https://github.com/nix-community/home-manager
synced 2024-11-10 21:29:48 +01:00
clipmenu: set Environment to a list
This commit is contained in:
parent
972916c973
commit
812ab588dc
1 changed files with 4 additions and 2 deletions
|
@ -49,10 +49,12 @@ in {
|
|||
|
||||
Service = {
|
||||
ExecStart = "${cfg.package}/bin/clipmenud";
|
||||
Environment = "PATH=${
|
||||
Environment = [
|
||||
"PATH=${
|
||||
makeBinPath
|
||||
(with pkgs; [ coreutils findutils gnugrep gnused systemd ])
|
||||
}";
|
||||
}"
|
||||
];
|
||||
};
|
||||
|
||||
Install = { WantedBy = [ "graphical-session.target" ]; };
|
||||
|
|
Loading…
Reference in a new issue