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

12 lines
250 B
Nix
Raw Normal View History

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