nixos-laptop/home-manager/keepassxc/default.nix
Pim Kunis bffcb3c95c autoformat nix files
change formatter alejandra -> nixfmt
reformat whole project
2023-11-10 11:33:41 +01:00

9 lines
250 B
Nix

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