Pim Kunis
17db8c152e
disable gnome keyring enable ssh agent encrypt keepassxc config because it contains secret agent keys now remove alacritty config
11 lines
250 B
Nix
11 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" ];
|
|
};
|
|
};
|
|
}
|