nixos-config/config/programs/keepass.nix

16 lines
348 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";
PartOf = [ "graphical-session.target" ];
};
Install = {
WantedBy = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
};
};
2022-02-28 20:52:12 +00:00
}