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

11 lines
272 B
Nix
Raw Normal View History

2024-06-09 20:00:47 +00:00
{ pkgs, config, flake, ... }: {
2023-10-08 14:57:57 +00:00
config = {
home.packages = [ pkgs.unstable.keepassxc ];
2024-06-09 20:00:47 +00:00
homeage.file."keepassxc.ini" = {
2024-06-09 20:00:47 +00:00
source = "${flake}/secrets/keepassxc.ini.age";
symlinks = [ "${config.xdg.configHome}/keepassxc/keepassxc.ini" ];
};
2023-10-08 14:57:57 +00:00
};
}