13 lines
252 B
Nix
13 lines
252 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"];
|
|
};
|
|
};
|
|
}
|