nixos-laptop/home-manager/keepassxc/default.nix

14 lines
252 B
Nix
Raw Normal View History

2023-10-08 14:57:57 +00:00
{
2023-11-05 17:49:51 +00:00
pkgs,
config,
...
}: {
2023-10-08 14:57:57 +00:00
config = {
2023-11-05 17:49:51 +00:00
home.packages = [pkgs.keepassxc];
homeage.file."keepassxc.ini" = {
source = ../../secrets/keepassxc.ini.age;
2023-11-05 17:49:51 +00:00
symlinks = ["${config.xdg.configHome}/keepassxc/keepassxc.ini"];
};
2023-10-08 14:57:57 +00:00
};
}