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

11 lines
272 B
Nix
Raw Normal View History

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