16 lines
398 B
Nix
16 lines
398 B
Nix
{ pkgs, ... }: {
|
|
home.packages = [ pkgs.keepassxc ];
|
|
systemd.user.services.keepassxc = {
|
|
Unit = {
|
|
Description = "keepassxc";
|
|
After = [ "graphical-session-pre.target" ];
|
|
PartOf = [ "graphical-session.target" ];
|
|
};
|
|
Install = {
|
|
WantedBy = [ "graphical-session.target" ];
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
|
|
};
|
|
};
|
|
}
|