- `wireguard` for `hs` - gnome keyring for VSCode to make Copilot work - uninstalled local `Hydra` on `pc` - VSCode -> VSCodeFHS - Emacs - typescript - solidity - envrc mode
16 lines
304 B
Nix
16 lines
304 B
Nix
{pkgs, ...}: {
|
|
services.gpg-agent = {
|
|
enable = true;
|
|
enableSshSupport = true;
|
|
sshKeys = ["CE2FD0D9BECBD8876811714925066CC257413416"];
|
|
extraConfig = ''
|
|
allow-emacs-pinentry
|
|
allow-loopback-pinentry
|
|
'';
|
|
};
|
|
|
|
programs.gpg = {
|
|
enable = true;
|
|
settings = {};
|
|
};
|
|
}
|