Save keepasscx configuration

This commit is contained in:
Charlotte Van Petegem 2023-06-09 13:53:34 +02:00
parent 5923886184
commit 2fa1871610
No known key found for this signature in database
GPG key ID: 019E764B7184435A
2 changed files with 7 additions and 2 deletions

View file

@ -7,6 +7,11 @@
};
config = lib.mkIf config.chvp.graphical.pass.enable {
chvp.base.zfs.homeLinks = [
{ path = ".config/keepassxc"; type = "data"; }
{ path = ".cache/keepassxc"; type = "cache"; }
];
chvp.base.emacs.extraConfig = [
''
(use-package secrets

View file

@ -7,10 +7,10 @@
};
config = lib.mkIf config.chvp.programs.torrents.enable {
chvp.base.zfs.homeLinks = [{ path = ".config/transmission-remote-gtk"; type = "data"; }];
home-manager.users.charlotte = { pkgs, ... }: {
home.packages = with pkgs; [ transmission-remote-gtk ];
};
chvp.base.zfs.homeLinks = [{ path = ".config/transmission-remote-gtk"; type = "data"; }];
};
}