15 lines
238 B
Nix
15 lines
238 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
home.packages = [pkgs.keepassxc];
|
|
systemd.user.services.keepassxc = {
|
|
Unit = {
|
|
Description = "keepassxc";
|
|
};
|
|
Service = {
|
|
ExecStart = "${pkgs.keepassxc}/bin/keepassxc";
|
|
};
|
|
};
|
|
}
|