nixos-config/config/programs/keepass.nix

17 lines
398 B
Nix
Raw Normal View History

2022-02-28 20:52:12 +00:00
{ pkgs, ... }: {
home.packages = [ pkgs.keepassxc ];
systemd.user.services.keepassxc = {
Unit = {
Description = "keepassxc";
2022-05-11 18:09:27 +00:00
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
};
};
2022-02-28 20:52:12 +00:00
}