2022-06-12 16:39:15 +01:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}: {
|
|
|
|
home.packages = [pkgs.keepassxc];
|
2022-03-06 11:17:11 +01:00
|
|
|
systemd.user.services.keepassxc = {
|
|
|
|
Unit = {
|
|
|
|
Description = "keepassxc";
|
2023-01-01 14:28:25 +01:00
|
|
|
After = ["graphical-session-pre.target"];
|
|
|
|
PartOf = ["graphical-session.target"];
|
2022-03-06 11:17:11 +01:00
|
|
|
};
|
2023-01-01 12:44:43 +01:00
|
|
|
Install.WantedBy = ["graphical-session.target"];
|
2022-03-06 11:17:11 +01:00
|
|
|
Service = {
|
|
|
|
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
|
|
|
|
};
|
|
|
|
};
|
2022-02-28 21:52:12 +01:00
|
|
|
}
|