aly/nox: use pinentry-tty

This commit is contained in:
Aly Raffauf 2024-08-27 20:13:35 -04:00
parent 4ae9d2ce10
commit c94f6681af

View file

@ -1,4 +1,4 @@
self: {
self: {pkgs, ...}: {
imports = [
./common.nix
./secrets.nix
@ -6,5 +6,8 @@ self: {
self.inputs.agenix.homeManagerModules.default
];
programs.helix.defaultEditor = true;
programs = {
helix.defaultEditor = true;
rbw.settings.pinentry = pkgs.pinentry-tty;
};
}