nixos-laptop/home-manager/keepassxc/default.nix
2024-05-19 13:01:27 +02:00

9 lines
259 B
Nix

{ pkgs, config, ... }: {
config = {
home.packages = [ pkgs.unstable.keepassxc ];
homeage.file."keepassxc.ini" = {
source = ../../secrets/keepassxc.ini.age;
symlinks = [ "${config.xdg.configHome}/keepassxc/keepassxc.ini" ];
};
};
}