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