10 lines
272 B
Nix
10 lines
272 B
Nix
{ pkgs, config, flake, ... }: {
|
|
config = {
|
|
home.packages = [ pkgs.unstable.keepassxc ];
|
|
|
|
homeage.file."keepassxc.ini" = {
|
|
source = "${flake}/secrets/keepassxc.ini.age";
|
|
symlinks = [ "${config.xdg.configHome}/keepassxc/keepassxc.ini" ];
|
|
};
|
|
};
|
|
}
|