1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2025-12-12 20:11:06 +01:00

volnoti: use cfg.package instead of pkgs

This commit is contained in:
Tomodachi94 2024-08-10 14:13:51 -07:00 committed by Robert Helgesson
parent f9fd45c512
commit 98bf8de65d
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
4 changed files with 34 additions and 1 deletions

View file

@ -37,7 +37,7 @@ in {
Install = { WantedBy = [ "graphical-session.target" ]; };
Service = { ExecStart = "${pkgs.volnoti}/bin/volnoti -v -n"; };
Service = { ExecStart = "${lib.getExe cfg.package} -v -n"; };
};
};
}