1
0
Fork 0
mirror of https://github.com/nix-community/home-manager synced 2024-09-21 05:47:29 +02:00

clipmenu: set Environment to a list

This commit is contained in:
Joseph Ryan 2023-11-01 20:36:53 -07:00 committed by Mikilio
parent 972916c973
commit 812ab588dc
No known key found for this signature in database
GPG key ID: 5B2F1A890CF33F3F

View file

@ -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" ]; };