1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 01:18:32 +02:00

clipmenu: set Environment to a list

This commit is contained in:
Joseph Ryan 2023-11-01 20:36:53 -07:00
parent 48b0a30202
commit 831b4fa317

View File

@ -49,10 +49,12 @@ in {
Service = { Service = {
ExecStart = "${cfg.package}/bin/clipmenud"; ExecStart = "${cfg.package}/bin/clipmenud";
Environment = "PATH=${ Environment = [
"PATH=${
makeBinPath makeBinPath
(with pkgs; [ coreutils findutils gnugrep gnused systemd ]) (with pkgs; [ coreutils findutils gnugrep gnused systemd ])
}"; }"
];
}; };
Install = { WantedBy = [ "graphical-session.target" ]; }; Install = { WantedBy = [ "graphical-session.target" ]; };