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

rsibreak: fix type of systemd Service.Environment

See #5854
This commit is contained in:
Coutinho de Souza 2024-09-19 16:15:20 +00:00 committed by GitHub
parent 80092fae03
commit 336c792b19
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -30,7 +30,7 @@ in {
Install = { WantedBy = [ "graphical-session.target" ]; }; Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { Service = {
Environment = "PATH=${config.home.profileDirectory}/bin"; Environment = [ "PATH=${config.home.profileDirectory}/bin" ];
ExecStart = "${pkgs.rsibreak}/bin/rsibreak"; ExecStart = "${pkgs.rsibreak}/bin/rsibreak";
}; };
}; };