1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-23 15:08:31 +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 = {
ExecStart = "${cfg.package}/bin/clipmenud";
Environment = "PATH=${
Environment = [
"PATH=${
makeBinPath
(with pkgs; [ coreutils findutils gnugrep gnused systemd ])
}";
}"
];
};
Install = { WantedBy = [ "graphical-session.target" ]; };