Updated emacs config for new dot-emacs repo

This commit is contained in:
Random936
2025-08-04 20:50:09 -07:00
parent 72d16c4e37
commit 8746d38eef
2 changed files with 22 additions and 15 deletions

View File

@@ -56,11 +56,29 @@
hardware.bluetooth.enable = true;
services.blueman.enable = true;
# System Packages
environment.systemPackages = with pkgs; [
pinentry-gtk2
protonmail-bridge
pass
];
# Setup Pinentry
environment.systemPackages = with pkgs; [ pinentry-gtk2 ];
programs.gnupg.agent = {
enable = true;
pinentryPackage = pkgs.pinentry-gtk2;
enableSSHSupport = true;
};
# Setup protonmail bridge
systemd.user.services.protonmail-bridge = {
description = "Protonmail Bridge";
after = [ "network.target" ];
wantedBy = [ "default.target" ];
path = [ pkgs.pass ];
serviceConfig = {
Restart = "always";
ExecStart = "${pkgs.protonmail-bridge}/bin/protonmail-bridge --noninteractive";
};
};
}